From e5d0780803ee7dd8e647761e1b0602c620de1525 Mon Sep 17 00:00:00 2001 From: Yaruma3341 Date: Sun, 2 Feb 2020 01:07:14 +0100 Subject: [PATCH] bugfixes --- src/de/steamwar/lobby/commands/ShieldCommand.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/de/steamwar/lobby/commands/ShieldCommand.java b/src/de/steamwar/lobby/commands/ShieldCommand.java index c81d937..fc3e9f3 100644 --- a/src/de/steamwar/lobby/commands/ShieldCommand.java +++ b/src/de/steamwar/lobby/commands/ShieldCommand.java @@ -32,6 +32,7 @@ public class ShieldCommand implements CommandExecutor { lobbyPlayer.setShield(newShieldState); player.sendMessage("§7Dein Schild ist jetzt " + (newShieldState ? "§aan" : "§caus") + "§7."); + LobbyPlayer.getLobbyPlayer(player.getUniqueId()); return false; } }