From 2e354f5e84200f30961c1a33f6d7cbb9a29e7751 Mon Sep 17 00:00:00 2001 From: GearShocky Date: Thu, 3 Apr 2025 13:54:57 +0500 Subject: [PATCH] m --- .../mc/otm/registry/game/MCreativeTabs.kt | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) 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) } }