@@ -23,13 +23,13 @@ class TileMachineIORenderer extends TileRenderHelper[AbstractMachine] {
23
23
for (dir <- EnumFacing .values()) {
24
24
if (te.canInputFromSide(dir, facing) && te.canOutputFromSide(dir, facing))
25
25
renderIconOnBlock(Minecraft .getMinecraft.getTextureMapBlocks.getAtlasSprite(" neotech:blocks/inputOutputFace" ),
26
- 0 , te.getDirFromFacing( dir, facing), te.getDirFromFacing( dir, facing) , new LocationDouble (x, y, z), 16.0F , 0.0 , 0.0 , - 0.001 )
26
+ 0 , dir, dir, new LocationDouble (x, y, z), 16.0F , 0.0 , 0.0 , - 0.001 )
27
27
else if (! te.canInputFromSide(dir, facing) && te.canOutputFromSide(dir, facing))
28
28
renderIconOnBlock(Minecraft .getMinecraft.getTextureMapBlocks.getAtlasSprite(" neotech:blocks/outputFace" ),
29
- 0 , te.getDirFromFacing( dir, facing), te.getDirFromFacing( dir, facing) , new LocationDouble (x, y, z), 16.0F , 0.0F , 0.0F , - 0.001 )
29
+ 0 , dir, dir, new LocationDouble (x, y, z), 16.0F , 0.0F , 0.0F , - 0.001 )
30
30
else if (te.canInputFromSide(dir, facing) && ! te.canOutputFromSide(dir, facing))
31
31
renderIconOnBlock(Minecraft .getMinecraft.getTextureMapBlocks.getAtlasSprite(" neotech:blocks/inputFace" ),
32
- 0 , te.getDirFromFacing( dir, facing), te.getDirFromFacing( dir, facing) , new LocationDouble (x, y, z), 16.0F , 0.0 , 0.0 , - 0.001 )
32
+ 0 , dir, dir, new LocationDouble (x, y, z), 16.0F , 0.0 , 0.0 , - 0.001 )
33
33
}
34
34
}
35
35
} catch {
0 commit comments