You can now sort items in the Custom Item list! Just set "itemOrder" under "categories" in your inventories.yml file:
Code (YAML):
# If you want to order the items in the category's item list view, you can
# set itemOrder. Items will be added in the order that they appear in itemOrder.
# Keep in mind that you STILL NEED TO REGISTER THE ITEM INTO THE CATEGORY IN THE
# ITEM'S YML FILE. Any items that aren't in the list but are in the category will
# be added to the inventory after the ordered items.
categories:
miscellaneous:
itemName
:
"&dMiscellaneous"
item
:
"minecraft:DIAMOND_PICKAXE"
itemOrder
:
-
"myFirstCustomItem"
-
"mySecondCustomItem"
-
"myThirdCustomItem"