Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
updated antimatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Oct 25, 2023
1 parent 1372f22 commit fa83b56
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@
import muramasa.antimatter.gui.event.IGuiEvent;
import muramasa.antimatter.gui.widget.InfoRenderWidget;
import muramasa.antimatter.machine.types.Machine;
import muramasa.antimatter.texture.Texture;
import muramasa.gregtech.GTIRef;
import muramasa.gregtech.data.GregTechData;
import net.minecraft.client.gui.Font;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.state.BlockState;

import static muramasa.antimatter.machine.Tier.LUV;
import static muramasa.antimatter.machine.Tier.ZPM;
import static muramasa.antimatter.machine.Tier.*;

public class BlockEntityFusionReactor extends BlockEntityMultiMachine<BlockEntityFusionReactor> {

Expand Down Expand Up @@ -79,6 +81,10 @@ public void onGuiEvent(IGuiEvent event, Player playerEntity) {
}
}

public Texture getTextureForHatches(Direction dir, BlockPos hatchPos){
return new Texture(GTIRef.ID, "block/casing/fusion_1");
}

@Override
public int guiHeight() {
return 182;
Expand Down

0 comments on commit fa83b56

Please sign in to comment.