diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/game/MCreativeTabs.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/game/MCreativeTabs.kt index b4ac42c60..9163895d9 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/game/MCreativeTabs.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/game/MCreativeTabs.kt @@ -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) } }