From 9657d11af758414a5f304cc516c1e54068e5cd50 Mon Sep 17 00:00:00 2001 From: tastybento Date: Mon, 10 Jul 2023 21:39:57 -0700 Subject: [PATCH 1/5] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bce30a4..1bdcb44 100644 --- a/pom.xml +++ b/pom.xml @@ -312,7 +312,7 @@ org.jacoco jacoco-maven-plugin - 0.8.11 + 0.8.10 true From 0e1cd1353c0030ae1137f4dadee732b26d737447 Mon Sep 17 00:00:00 2001 From: BONNe Date: Wed, 26 Jul 2023 15:37:35 +0300 Subject: [PATCH 2/5] Version Up --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1bdcb44..211c95a 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,7 @@ -LOCAL - 1.13.0 + 1.14.0 BentoBoxWorld_Warps bentobox-world From d346b7864eabd6710c4225981b51f153bd2ad2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Chomczyk?= Date: Sun, 3 Sep 2023 17:50:30 +0200 Subject: [PATCH 3/5] Fix invalid placeholder name for warp's description; improve translations by a little, fix typo --- src/main/resources/locales/pl.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/locales/pl.yml b/src/main/resources/locales/pl.yml index 7dc32e8..6209a9a 100644 --- a/src/main/resources/locales/pl.yml +++ b/src/main/resources/locales/pl.yml @@ -4,16 +4,16 @@ warp: description: teleportuje cię do tabliczki innego gracza parameters: "" warps: - deactivate: "&c Stary teleport zdezaktywowany!" + deactivate: "&c Stary teleport został zdezaktywowany!" error: does-not-exist: "&c Ten teleport nie istnieje." no-permission: "&c Brak uprawnień!" no-remove: "&c Nie możesz usunąć tej tabliczki!" - no-warps-yet: "&c Nie ma jeszcze teleportów." + no-warps-yet: "&c Nie ma jeszcze stworzonych teleportów." not-enough-level: "&c Twój poziom wyspy nie jest wystarczająco wysoki!" not-on-island: "&c Musisz być na wyspie, by to zrobić." not-safe: "&c Ten teleport nie jest bezpieczny!" - your-level-is: "&c Twój poziom wyspy to [level], a musi wynosić co namniej [required]. + your-level-is: "&c Twój poziom wyspy to [level], a musi wynosić co najmniej [required]. Użyj komendy /is level." help: description: otwiera panel warpów @@ -34,7 +34,7 @@ warps: description: "&7 Przełącz na stronę [number]" warp: name: "&f&l [name]" - description: "[sing_text]" + description: "[sign_text]" random: name: "&f&l Losowa wyspa" description: "&7 Hmm, gdzie się pojawię?" From a1e03af13a434119db2487452400920854f924b9 Mon Sep 17 00:00:00 2001 From: BONNe Date: Sun, 5 Nov 2023 21:35:59 +0200 Subject: [PATCH 4/5] Update WarpsCommand.java --- src/main/java/world/bentobox/warps/commands/WarpsCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/world/bentobox/warps/commands/WarpsCommand.java b/src/main/java/world/bentobox/warps/commands/WarpsCommand.java index 108a255..de81de5 100644 --- a/src/main/java/world/bentobox/warps/commands/WarpsCommand.java +++ b/src/main/java/world/bentobox/warps/commands/WarpsCommand.java @@ -34,7 +34,7 @@ public class WarpsCommand extends CompositeCommand { */ @Override public void setup() { - this.setPermission(this.getParent() == null ? Warp.WELCOME_WARP_SIGNS + ".warp" : "island.warp"); + this.setPermission(this.getParent() == null ? Warp.WELCOME_WARP_SIGNS + ".warps" : "island.warps"); this.setOnlyPlayer(true); this.setDescription("warps.help.description"); } From 6dbdb0f8aa04dea2ea5aeab72d1e1524c7979752 Mon Sep 17 00:00:00 2001 From: BONNe Date: Sun, 5 Nov 2023 22:00:28 +0200 Subject: [PATCH 5/5] Update WarpsCommandTest.java --- .../java/world/bentobox/warps/commands/WarpsCommandTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java b/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java index 07a046f..27fd6ff 100644 --- a/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java +++ b/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java @@ -123,7 +123,7 @@ public class WarpsCommandTest { @Test public void testSetupWarpCompositeCommand() { warpCommandWarpsCompositeCommand(); - assertEquals("bskyblock.island.warp", wc.getPermission()); + assertEquals("bskyblock.island.warps", wc.getPermission()); assertTrue(wc.isOnlyPlayer()); assertEquals("warps.help.description", wc.getDescription()); } @@ -134,7 +134,7 @@ public class WarpsCommandTest { @Test public void testSetupWarp() { warpCommandWarps(); - assertEquals(Warp.WELCOME_WARP_SIGNS + ".warp", wc.getPermission()); + assertEquals(Warp.WELCOME_WARP_SIGNS + ".warps", wc.getPermission()); assertTrue(wc.isOnlyPlayer()); assertEquals("warps.help.description", wc.getDescription()); }