File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
common/src/main/java/dev/terminalmc/clientsort/client/config Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 66- Fixed a minor issue with policy saving when first enabling buttons on a new inventory type
77- Fixed buttons disappearing on screen resize on Fabric
88- Fixed buttons disappearing on creative inventory tab switch
9+ - Disabled operations in extra inventory slots by default
910- Disabled operations in some inventories from the following mods by default:
1011 - Traveler's Backpack
1112 - Tom's Simple Storage Mod
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ public enum ExtraSlotScope {
9393 NONE
9494 }
9595
96- public static final ExtraSlotScope extraSlotScopeDefault = ExtraSlotScope .EXTRA ;
96+ public static final ExtraSlotScope extraSlotScopeDefault = ExtraSlotScope .NONE ;
9797 public ExtraSlotScope extraSlotScope = extraSlotScopeDefault ;
9898 public static Validator <ExtraSlotScope > extraSlotScopeValidator = (val ) ->
9999 val != null && Arrays .stream (ExtraSlotScope .values ()).toList ().contains (val )
You can’t perform that action at this time.
0 commit comments