|
17 | 17 | import muramasa.antimatter.util.Utils;
|
18 | 18 | import net.minecraft.ChatFormatting;
|
19 | 19 | import net.minecraft.world.level.block.Block;
|
| 20 | +import org.gtreimagined.gt4r.block.BlockReactorChamber; |
| 21 | +import org.gtreimagined.gt4r.items.ReactorChamberBlockItem; |
20 | 22 | import org.gtreimagined.gt4r.reactor.tile.BlockEntityReactorCore;
|
21 | 23 | import org.gtreimagined.gtcore.data.GTCoreBlocks;
|
22 | 24 | import org.gtreimagined.gtcore.machine.DrumMachine;
|
@@ -138,7 +140,7 @@ public class Machines {
|
138 | 140 | public static MultiMachine LARGE_GAS_TURBINE = new MultiMachine(GT4RRef.ID, "large_gas_turbine").setMap(LARGE_GAS_FUELS).setTiers(IV).addFlags(GUI, FLUID, ITEM, EU, GENERATOR).setTile(BlockEntityLargeTurbine::new).custom(Textures.TURBINE);
|
139 | 141 | public static MultiMachine LARGE_HEAT_EXCHANGER = new MultiMachine(GT4RRef.ID, "large_heat_exchanger").setTiers(EV).addFlags(GUI, FLUID, EU).setTile(BlockEntityLargeHeatExchanger::new);
|
140 | 142 | public static BasicMultiMachine<?> NUCLEAR_REACTOR_CORE = new BasicMultiMachine<>(GT4RRef.ID, "nuclear_reactor_core").setTiers(NONE).addFlags(GUI, ITEM, FLUID, EU).baseTexture(Textures.BASE_HANDLER).setTile(BlockEntityReactorCore::new).noCovers().setClientTicking();
|
141 |
| - public static BasicMachine REACTOR_CHAMBER = new BasicMachine(GT4RRef.ID, "reactor_chamber").setTiers(NONE).baseTexture(Textures.BASE_HANDLER).overlayTexture((t, s, t2, i) -> { |
| 143 | + public static BasicMachine REACTOR_CHAMBER = new BasicMachine(GT4RRef.ID, "reactor_chamber").setTiers(NONE).setBlock(BlockReactorChamber::new).setItemBlockClass(() -> BlockReactorChamber.class).setItemBlock(ReactorChamberBlockItem::new).baseTexture(Textures.BASE_HANDLER).overlayTexture((t, s, t2, i) -> { |
142 | 144 | Texture side = new Texture(GT4RRef.ID, "block/machine/overlay/nuclear_reactor_core/top");
|
143 | 145 | Texture top = new Texture(GT4RRef.ID, "block/machine/empty");
|
144 | 146 | return new Texture[]{top, top, side, side, side, side};
|
|
0 commit comments