From a41b3578a9319aca414834ad337b1f4191da61cd Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Sun, 6 Jun 2021 16:32:40 +0200 Subject: [PATCH] Fix HB Save Message Signed-off-by: Chaoscaot --- .../de/steamwar/bausystem/features/hotbar/HotbarCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/hotbar/HotbarCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/hotbar/HotbarCommand.java index 0a7ab976..ed9069cd 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/hotbar/HotbarCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/hotbar/HotbarCommand.java @@ -47,13 +47,13 @@ public class HotbarCommand extends SWCommand { @Register("load") public void loadHotbar(Player p) { DefaultHotbar.setHotbar(p); - BauSystem.MESSAGE.send("HOTBAR_SAVED", p); + BauSystem.MESSAGE.send("HOTBAR_LOADED", p); } @Register("save") public void saveHotbar(Player p) { DefaultHotbar.updateHotbar(p); - BauSystem.MESSAGE.send("HOTBAR_LOADED", p); + BauSystem.MESSAGE.send("HOTBAR_SAVED", p); } @Register("show")