This commit is contained in:
GearShocky 2025-04-03 13:54:57 +05:00
parent 62eaaadb44
commit 2e354f5e84

View File

@ -358,20 +358,6 @@ private fun addDecorativeTabItems(consumer: CreativeModeTab.Output) {
all(MRegistry.DECORATIVE_CRATE.allItems)
//preferably put all roflite blocks into a "roflite" block category, idk how to do it here atm
accept(MItems.ROFLITE_FRAME)
accept(MItems.ROFLITE_PLATING)
accept(MItems.ROFLITE_PLATING_STAIRS)
accept(MItems.ROFLITE_PLATING_SLAB)
accept(MItems.CUT_ROFLITE)
accept(MItems.CUT_ROFLITE_STAIRS)
accept(MItems.CUT_ROFLITE_SLAB)
accept(MItems.ROFLITE_PILLAR)
accept(MItems.ROFLITE_ASSEMBLY)
for (color in colorOrder) {
accept(MRegistry.TRITANIUM_BLOCK.allItems[color]!!)
accept(MRegistry.TRITANIUM_STAIRS.allItems[color]!!)
@ -394,6 +380,21 @@ private fun addDecorativeTabItems(consumer: CreativeModeTab.Output) {
accept(MRegistry.TRITANIUM_STRIPED_STAIRS.flatItems)
accept(MRegistry.TRITANIUM_STRIPED_SLAB.flatItems)
accept(MRegistry.TRITANIUM_STRIPED_WALL.flatItems)
//preferably put all roflite blocks into a "roflite" block category, idk how to do it here atm
accept(MItems.ROFLITE_FRAME)
accept(MItems.ROFLITE_PLATING)
accept(MItems.ROFLITE_PLATING_STAIRS)
accept(MItems.ROFLITE_PLATING_SLAB)
accept(MItems.CUT_ROFLITE)
accept(MItems.CUT_ROFLITE_STAIRS)
accept(MItems.CUT_ROFLITE_SLAB)
accept(MItems.CHISELED_ROFLITE)
accept(MItems.ROFLITE_PILLAR)
accept(MItems.ROFLITE_ASSEMBLY)
}
}