From 2a3536bfb4e6c09287c2e2239c5a3b86aefd630d Mon Sep 17 00:00:00 2001 From: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> Date: Thu, 20 Jun 2024 01:49:05 +1000 Subject: Add toggle to disable slot locking in storage (#1199) Co-authored-by: jani270 <69345714+jani270@users.noreply.github.com> --- .../notenoughupdates/options/separatesections/SlotLocking.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/SlotLocking.java') diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/SlotLocking.java b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/SlotLocking.java index 45422347..e373747f 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/SlotLocking.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/separatesections/SlotLocking.java @@ -77,6 +77,14 @@ public class SlotLocking { @ConfigEditorBoolean public boolean lockSlotsInTrade = true; + @Expose + @ConfigOption( + name = "Disable Locking in Storage", + desc = "Disables slot locking and binding in the storage gui" + ) + @ConfigEditorBoolean + public boolean disableInStorage = false; + @Expose /*@ConfigOption( name = "Item Swap drop delay", -- cgit