diff --git a/src/de/steamwar/lobby/commands/ShieldCommand.java b/src/de/steamwar/lobby/commands/ShieldCommand.java index a8a54af..4ebbfe2 100644 --- a/src/de/steamwar/lobby/commands/ShieldCommand.java +++ b/src/de/steamwar/lobby/commands/ShieldCommand.java @@ -32,8 +32,8 @@ public class ShieldCommand implements CommandExecutor { boolean newShieldState = !lobbyPlayer.isShield(); lobbyPlayer.setShield(newShieldState); - player.sendMessage("§7Dein Schild ist jetzt " + (newShieldState ? "§aan" : "§caus") + "§7."); LobbyInventory.givePlayerLobbyItems(player); + player.sendMessage("§7Dein Schild ist jetzt " + (newShieldState ? "§aan" : "§caus") + "§7."); return false; } }