Fix sawmill hologram offset. Closes #1750
This commit is contained in:
parent
981b9fa13b
commit
2415040add
1 changed files with 2 additions and 2 deletions
|
@ -36,8 +36,8 @@ import reborncore.client.gui.guibuilder.GuiBuilder;
|
|||
import reborncore.client.multiblock.Multiblock;
|
||||
import reborncore.client.multiblock.MultiblockRenderEvent;
|
||||
import reborncore.client.multiblock.MultiblockSet;
|
||||
import techreborn.init.TRContent;
|
||||
import techreborn.blockentity.machine.multiblock.IndustrialSawmillBlockEntity;
|
||||
import techreborn.init.TRContent;
|
||||
|
||||
public class GuiIndustrialSawmill extends GuiBase {
|
||||
|
||||
|
@ -142,7 +142,7 @@ public class GuiIndustrialSawmill extends GuiBase {
|
|||
this.blockEntity.getPos().getX()
|
||||
- Direction.byId(this.blockEntity.getFacingInt()).getOffsetY() * 2,
|
||||
this.blockEntity.getPos().getY() - 1, this.blockEntity.getPos().getZ()
|
||||
- Direction.byId(this.blockEntity.getFacingInt()).getOffsetY() * 2);
|
||||
- Direction.byId(this.blockEntity.getFacingInt()).getOffsetY() * 2).offset(blockEntity.getFacing().getOpposite(), 2);
|
||||
}
|
||||
} else {
|
||||
RebornCoreClient.multiblockRenderEvent.setMultiblock(null);
|
||||
|
|
Loading…
Add table
Reference in a new issue