From db2dc1eab43f0efe76b93180576c156f4b8a7ab5 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Tue, 30 Mar 2021 12:23:52 +0200 Subject: [PATCH 1/3] Adding Message for old Detonator --- .../steamwar/bausystem/world/Detonator.java | 29 ++++++++++++++++--- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java b/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java index 4f98875..9275afa 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java @@ -84,7 +84,14 @@ public class Detonator implements Listener { PLAYER_LOCS.computeIfAbsent(player, player1 -> new HashSet<>()).clear(); PLAYER_LOCS.get(player).add(detoloader); return item; - }, 12), new VersionedCallable<>(() -> pushLocToDetonator(clearDetonator(item), detoloader), 15)); + }, 12), new VersionedCallable<>(() -> { + try { + return pushLocToDetonator(clearDetonator(item), detoloader); + }catch (SecurityException e){ + player.sendMessage(BauSystem.PREFIX + "§c" + e.getMessage()); + return item; + } + }, 15)); } public static ItemStack toggleLocation(ItemStack item, Player player, Detoloader detoloader, Location location) { @@ -103,12 +110,26 @@ public class Detonator implements Listener { return VersionedCallable.call(new VersionedCallable<>(() -> { PLAYER_LOCS.computeIfAbsent(player, player1 -> new HashSet<>()).add(new Detoloader.DetonatorActivation(location)); return item; - }, 12), new VersionedCallable<>(() -> pushLocToDetonator(item, new Detoloader.DetonatorActivation(location)), 15)); + }, 12), new VersionedCallable<>(() -> { + try { + return pushLocToDetonator(item, new Detoloader.DetonatorActivation(location)); + }catch (SecurityException e){ + player.sendMessage(BauSystem.PREFIX + "§c" + e.getMessage()); + return item; + } + }, 15)); else return VersionedCallable.call(new VersionedCallable<>(() -> { PLAYER_LOCS.computeIfAbsent(player, player1 -> new HashSet<>()).add(new Detoloader.DetonatorActivation(detoloader.getActivation(), location)); return item; - }, 12), new VersionedCallable<>(() -> pushLocToDetonator(item, new Detoloader.DetonatorActivation(detoloader.getActivation(), location)), 15)); + }, 12), new VersionedCallable<>(() -> { + try { + return pushLocToDetonator(item, new Detoloader.DetonatorActivation(detoloader.getActivation(), location)); + }catch (SecurityException e){ + player.sendMessage(BauSystem.PREFIX + "§c" + e.getMessage()); + return item; + } + }, 15)); } } @@ -208,7 +229,7 @@ public class Detonator implements Listener { public static ItemStack pushLocToDetonator(ItemStack item, Detoloader.DetonatorActivation detoloader) { int slot = getFreeSlot(item); if (slot == -1) - throw new SecurityException("Ein Fehler ist aufgetreten"); + throw new SecurityException("Ein Fehler ist aufgetreten, Hohle dir einen neuen Detonator mit §8/§edt wand"); ItemMeta meta = item.getItemMeta(); Location block = detoloader.location; meta.getPersistentDataContainer().set(new NamespacedKey(BauSystem.getPlugin(), DETO_PREFIX + slot), PersistentDataType.INTEGER_ARRAY, new int[] From 0a513317b9808867df4540ff7913f09becafdd2a Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Tue, 30 Mar 2021 12:25:51 +0200 Subject: [PATCH 2/3] Adjusting Message --- BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java b/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java index 9275afa..f07279d 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java @@ -229,7 +229,7 @@ public class Detonator implements Listener { public static ItemStack pushLocToDetonator(ItemStack item, Detoloader.DetonatorActivation detoloader) { int slot = getFreeSlot(item); if (slot == -1) - throw new SecurityException("Ein Fehler ist aufgetreten, Hohle dir einen neuen Detonator mit §8/§edt wand"); + throw new SecurityException("Ein Fehler ist aufgetreten, hohl dir einen neuen Detonator mit §8/§edt wand"); ItemMeta meta = item.getItemMeta(); Location block = detoloader.location; meta.getPersistentDataContainer().set(new NamespacedKey(BauSystem.getPlugin(), DETO_PREFIX + slot), PersistentDataType.INTEGER_ARRAY, new int[] From 0e8f3f3e688b05d57ac51d368e78cb95b6248e34 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Thu, 1 Apr 2021 19:43:04 +0200 Subject: [PATCH 3/3] Adjusting Message --- BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java b/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java index f07279d..81d7295 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/world/Detonator.java @@ -229,7 +229,7 @@ public class Detonator implements Listener { public static ItemStack pushLocToDetonator(ItemStack item, Detoloader.DetonatorActivation detoloader) { int slot = getFreeSlot(item); if (slot == -1) - throw new SecurityException("Ein Fehler ist aufgetreten, hohl dir einen neuen Detonator mit §8/§edt wand"); + throw new SecurityException("Mit dem Detonator stimmt etwas nicht. Nimm dir einen neuen mit /dt wand. Wenn es dann immer nicht nicht tut, wende dich an einen Developer"); ItemMeta meta = item.getItemMeta(); Location block = detoloader.location; meta.getPersistentDataContainer().set(new NamespacedKey(BauSystem.getPlugin(), DETO_PREFIX + slot), PersistentDataType.INTEGER_ARRAY, new int[]