diff --git a/README.md b/README.md index da2524d..f236620 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,14 @@ # Sort Chest -Organize your chests instantly with a single keystroke +Organize your chests instantly with a single click + +This mod added several buttons in chest GUI. + +- **Sort:** sort items by id, metadata, and quantity. +- **Refill:** move same items (between chest and inventory) to chest. +- **Fill:** move items from inventory to chest. +- **Dump:** move items from chest to inventory. > **Important** > Required [Babric](https://github.com/Turnip-Labs/babric-instance-repo/releases) to run the mod. @@ -14,14 +21,14 @@ Organize your chests instantly with a single keystroke **Yes**, you can use the sort chest mod on a server. However, the item might jump for a while after sorting because the mod will emulate mouse clicks rather than directly changing the inventory data. -### How does the sort chest mod sort items? - -Items are sorted by their item ID (ascending), followed by its metadata (like wool color code, ascending), and finally -by its stack size (descending). - ### Rebind keys? 1. Open the mod menu (from [ModMenu](https://github.com/Turnip-Labs/ModMenu) mod) 2. Select "Sort Chest" mod from the left 3. Click at ⚙️ icon on the right 4. Rebind keys that you want + +### How does the sort chest mod sort items? + +Items are sorted by their item ID (ascending), followed by its metadata (like wool color code, ascending), and finally +by its quantity (descending). diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 66c901e..e117e69 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -3,7 +3,7 @@ "id": "sortchest", "version": "${version}", "name": "Sort Chest", - "description": "Organize your chests instantly with a single keystroke", + "description": "Organize your chests instantly with a single click", "authors": [ "rootEnginear" ],