From 4bd09e275574a67e2e826aa8a06c7a17da1aa312 Mon Sep 17 00:00:00 2001 From: Piotr Zych <77621271+P1otrulla@users.noreply.github.com> Date: Wed, 13 Aug 2025 06:38:03 +0200 Subject: [PATCH 1/2] Remove tellraw configuration fields --- .../com/eternalcode/core/translation/Translation.java | 6 ------ .../core/translation/implementation/ENTranslation.java | 9 --------- .../core/translation/implementation/PLTranslation.java | 10 ---------- 3 files changed, 25 deletions(-) diff --git a/eternalcore-core/src/main/java/com/eternalcode/core/translation/Translation.java b/eternalcore-core/src/main/java/com/eternalcode/core/translation/Translation.java index 59d97613a..bd2ad06b0 100644 --- a/eternalcore-core/src/main/java/com/eternalcode/core/translation/Translation.java +++ b/eternalcore-core/src/main/java/com/eternalcode/core/translation/Translation.java @@ -75,12 +75,6 @@ interface ChatSection { Notice slowMode(); Notice disabledChatInfo(); Notice commandNotFound(); - Notice tellrawInfo(); - Notice tellrawAllInfo(); - Notice tellrawSaved(); - Notice tellrawNoSaved(); - Notice tellrawMultipleSent(); - Notice tellrawCleared(); } interface EventSection { diff --git a/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/ENTranslation.java b/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/ENTranslation.java index 0d518351d..45118b789 100644 --- a/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/ENTranslation.java +++ b/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/ENTranslation.java @@ -255,15 +255,6 @@ public static class ENChatSection extends OkaeriConfig implements ChatSection { @Comment(" ") public Notice commandNotFound = Notice.chat("Command {COMMAND} doesn't exists!"); - @Comment({" ", "# {PLAYER} - Player who received the message", "# {MESSAGE} - message content", "# {TYPE} - message type"}) - public Notice tellrawInfo = Notice.chat("A message of type {TYPE} was sent to {PLAYER} with the content: {MESSAGE}"); - public Notice tellrawAllInfo = Notice.chat("A message of type {TYPE} was sent to all with the content: {MESSAGE}"); - - public Notice tellrawSaved = Notice.chat("Message saved in queue!"); - public Notice tellrawNoSaved = Notice.chat("No messages saved in queue!"); - public Notice tellrawMultipleSent = Notice.chat("Messages sent! Message que has been cleared!"); - public Notice tellrawCleared = Notice.chat("Message queue cleared!"); - } @Comment({ diff --git a/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/PLTranslation.java b/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/PLTranslation.java index 1d2d35078..ccb5fb985 100644 --- a/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/PLTranslation.java +++ b/eternalcore-core/src/main/java/com/eternalcode/core/translation/implementation/PLTranslation.java @@ -260,16 +260,6 @@ public static class PLChatSection extends OkaeriConfig implements ChatSection { @Comment(" ") public Notice commandNotFound = Notice.chat("Komenda {COMMAND} nie istnieje!"); - - @Comment({" ", "# {PLAYER} - Gracz, który otrzymał wiadomość", "# {MESSAGE} - wiadomość", "# {TYPE} - typ wiadomości"}) - public Notice tellrawInfo = Notice.chat("Wysłano wiadomość typu {TYPE} do {PLAYER} o treści: {MESSAGE}"); - public Notice tellrawAllInfo = Notice.chat("Wysłano wiadomość typu {TYPE} do wszystkich o treści: {MESSAGE}"); - - public Notice tellrawSaved = Notice.chat("Zapisano wiadomość w kolejce!"); - public Notice tellrawNoSaved = Notice.chat("Nie ma zapisanych wiadomości!"); - public Notice tellrawMultipleSent = Notice.chat("Wysłano wszystkie zapisane wiadomości!"); - public Notice tellrawCleared = Notice.chat("Wyczyszczono zapisane wiadomości!"); - } @Comment({ From c3bd66ab116d2667679b3ae5a2bcdd4c05e77c99 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Aug 2025 05:26:55 +0000 Subject: [PATCH 2/2] dependency: Update dependency org.jetbrains.kotlin:kotlin-stdlib-jdk8 to v2.2.0 --- buildSrc/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 31ea02844..26105502c 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -9,7 +9,7 @@ repositories { dependencies { implementation("net.kyori:blossom:1.3.1") implementation("com.gradleup.shadow:shadow-gradle-plugin:9.0.1") - implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.21") + implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.2.0") implementation("net.minecrell:plugin-yml:0.6.0") }