diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MCreativeTabs.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MCreativeTabs.kt index 1924b60c3..3252dd0bc 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MCreativeTabs.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MCreativeTabs.kt @@ -150,6 +150,7 @@ private fun addMainCreativeTabItems(consumer: CreativeModeTab.Output) { accept(MItems.TRITANIUM_ORE) accept(MItems.DEEPSLATE_TRITANIUM_ORE) accept(MItems.TRITANIUM_ORE_CLUMP) + accept(MItems.TRITANIUM_RAW_BLOCK) accept(MItems.TRITANIUM_DUST) accept(MItems.TRITANIUM_NUGGET) accept(MItems.TRITANIUM_INGOT) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt index 0a7fdc5fe..fe24d64a2 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItems.kt @@ -143,6 +143,9 @@ object MItems { machines.addAll(MATTER_BOTTLER.asSupplierArray().iterator()) machines.add(::MATTER_ENTANGLER) machines.addAll(MATTER_RECYCLER.asSupplierArray().iterator()) + machines.addAll(MATTER_RECONSTRUCTOR.asSupplierArray().iterator()) + + machines.add(::GRAVITATION_STABILIZER) machines.add(::STORAGE_BUS) machines.add(::STORAGE_IMPORTER)