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 aaee9818..b319fecb 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/hotbar/HotbarCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/hotbar/HotbarCommand.java @@ -49,7 +49,7 @@ public class HotbarCommand extends SWCommand { @Register(value = "show", description = "HOTBAR_HELP_SHOW") public void showHotbar(Player p) { - SWInventory inv = new SWInventory(p, 9, BauSystem.MESSAGE.parse("HOTBAR_INVENTORY", p)); + SWInventory inv = new SWInventory(p, 18, BauSystem.MESSAGE.parse("HOTBAR_INVENTORY", p)); ItemStack[] hotbar = DefaultHotbar.getItems(p); for (int i = 0; i < hotbar.length; i++) { if (hotbar[i] == null) continue;