From ed8717964d5ce4f3368ad7e3d9d77bfdd25c2de5 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 10 Aug 2024 02:01:12 +0700 Subject: [PATCH] Reflect removal of explosion test blocks in blockentities --- .../kotlin/ru/dbotthepony/mc/otm/registry/MBlockEntities.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockEntities.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockEntities.kt index ad8e53695..02afe2d3d 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockEntities.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockEntities.kt @@ -10,8 +10,6 @@ import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent import ru.dbotthepony.mc.otm.block.entity.* import ru.dbotthepony.mc.otm.block.entity.tech.* import ru.dbotthepony.mc.otm.block.entity.blackhole.BlackHoleBlockEntity -import ru.dbotthepony.mc.otm.block.entity.blackhole.BlockEntityExplosionDebugger -import ru.dbotthepony.mc.otm.block.entity.blackhole.BlockEntitySphereDebugger import ru.dbotthepony.mc.otm.block.entity.cable.SimpleEnergyCableBlockEntity import ru.dbotthepony.mc.otm.block.entity.decorative.CargoCrateBlockEntity import ru.dbotthepony.mc.otm.block.entity.decorative.DevChestBlockEntity @@ -109,9 +107,6 @@ object MBlockEntities { val HOLO_SIGN: BlockEntityType by registry.register(MNames.HOLO_SIGN) { BlockEntityType.Builder.of(::HoloSignBlockEntity, MBlocks.HOLO_SIGN).build(null) } - val DEBUG_EXPLOSION_SMALL: BlockEntityType by registry.register(MNames.DEBUG_EXPLOSION_SMALL) { BlockEntityType.Builder.of(::BlockEntityExplosionDebugger, MBlocks.DEBUG_EXPLOSION_SMALL).build(null) } - val DEBUG_SPHERE_POINTS: BlockEntityType by registry.register(MNames.DEBUG_SPHERE_POINTS) { BlockEntityType.Builder.of(::BlockEntitySphereDebugger, MBlocks.DEBUG_SPHERE_POINTS).build(null) } - fun register(bus: IEventBus) { registry.register(bus) bus.addListener(this::registerClient)