Skip to content

Commit

Permalink
Update from 1.21 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
sakura-ryoko committed Sep 14, 2024
1 parent abb4404 commit 8c4eff7
Show file tree
Hide file tree
Showing 6 changed files with 222 additions and 43 deletions.
6 changes: 6 additions & 0 deletions src/main/java/fi/dy/masa/itemscroller/config/Configs.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ public static class Generic
public static final ConfigBoolean SORT_INVENTORY_TOGGLE = new ConfigBoolean("sortInventoryToggle", false).apply(GENERIC_KEY);
public static final ConfigBoolean SORT_ASSUME_EMPTY_BOX_STACKS = new ConfigBoolean("sortAssumeEmptyBoxStacks", false).apply(GENERIC_KEY);
public static final ConfigBoolean SORT_SHULKER_BOXES_AT_END = new ConfigBoolean("sortShulkerBoxesAtEnd", true).apply(GENERIC_KEY);
public static final ConfigBoolean SORT_SHULKER_BOXES_INVERTED = new ConfigBoolean("sortShulkerBoxesInverted", false).apply(GENERIC_KEY);
public static final ConfigBoolean SORT_BUNDLES_AT_END = new ConfigBoolean("sortBundlesAtEnd", true).apply(GENERIC_KEY);
public static final ConfigBoolean SORT_BUNDLES_INVERTED = new ConfigBoolean("sortBundlesInverted", false).apply(GENERIC_KEY);
public static final ConfigStringList SORT_TOP_PRIORITY_INVENTORY = new ConfigStringList("sortTopPriorityInventory", DEFAULT_TOP_SORTING).apply(GENERIC_KEY);
public static final ConfigStringList SORT_BOTTOM_PRIORITY_INVENTORY = new ConfigStringList("sortBottomPriorityInventory", DEFAULT_BOTTOM_SORTING).apply(GENERIC_KEY);
public static final ConfigOptionList SORT_METHOD_DEFAULT = new ConfigOptionList("sortMethodDefault", SortingMethod.CATEGORY_NAME).apply(GENERIC_KEY);
Expand Down Expand Up @@ -91,6 +94,9 @@ public static class Generic
SORT_INVENTORY_TOGGLE,
SORT_ASSUME_EMPTY_BOX_STACKS,
SORT_SHULKER_BOXES_AT_END,
SORT_SHULKER_BOXES_INVERTED,
SORT_BUNDLES_AT_END,
SORT_BUNDLES_INVERTED,
SORT_TOP_PRIORITY_INVENTORY,
SORT_BOTTOM_PRIORITY_INVENTORY,
SORT_METHOD_DEFAULT,
Expand Down
Loading

0 comments on commit 8c4eff7

Please sign in to comment.