Typo rendereGlassConection

This commit is contained in:
thatsIch 2014-09-21 02:34:42 +02:00
parent 810d36d9c6
commit 581093665b

View file

@ -447,7 +447,7 @@ public class PartCable extends AEBasePart implements IPartCable
} }
@SideOnly(Side.CLIENT) @SideOnly(Side.CLIENT)
public void rendereGlassConection(int x, int y, int z, IPartRenderHelper rh, RenderBlocks renderer, ForgeDirection of) public void renderGlassConnection(int x, int y, int z, IPartRenderHelper rh, RenderBlocks renderer, ForgeDirection of)
{ {
TileEntity te = this.tile.getWorldObj().getTileEntity( x + of.offsetX, y + of.offsetY, z + of.offsetZ ); TileEntity te = this.tile.getWorldObj().getTileEntity( x + of.offsetX, y + of.offsetY, z + of.offsetZ );
IPartHost ccph = te instanceof IPartHost ? (IPartHost) te : null; IPartHost ccph = te instanceof IPartHost ? (IPartHost) te : null;
@ -935,7 +935,7 @@ public class PartCable extends AEBasePart implements IPartCable
for (ForgeDirection of : connections) for (ForgeDirection of : connections)
{ {
rendereGlassConection( x, y, z, rh, renderer, of ); renderGlassConnection( x, y, z, rh, renderer, of );
} }
} }
else else