diff --git a/gradle.properties b/gradle.properties index fc95df2..ad08868 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,7 +7,7 @@ yarn_mappings=1.16.5+build.3 loader_version=0.11.1 # Mod Properties -mod_version = 1.1.0 +mod_version = 1.1.1 maven_group = me.thegiggitybyte archives_base_name = ttc diff --git a/src/main/java/me/thegiggitybyte/ttc/gui/TrashCanGuiDescription.java b/src/main/java/me/thegiggitybyte/ttc/gui/TrashCanGuiDescription.java index 8e13728..57754e6 100644 --- a/src/main/java/me/thegiggitybyte/ttc/gui/TrashCanGuiDescription.java +++ b/src/main/java/me/thegiggitybyte/ttc/gui/TrashCanGuiDescription.java @@ -50,7 +50,7 @@ public ItemStack onSlotClick(int slotIndex, int button, SlotActionType action, P wasItemDeleted = true; } - } else if (action == SlotActionType.QUICK_MOVE) { // Shift-click. + } else if ((action == SlotActionType.QUICK_MOVE) && (slotIndex != 0)) { // Shift-click. Slot selectedSlot = this.slots.get(slotIndex); ItemStack selectedStack = selectedSlot.getStack();