Fixed a few more rendering/visual update glitches.
This commit is contained in:
@@ -334,7 +334,7 @@ public class BusRenderHelper implements IPartRenderHelper
|
||||
if ( !renderThis() )
|
||||
return;
|
||||
|
||||
renderer.renderStandardBlock( renderer.blockAccess.getBlock( x, y, z ), x, y, z );
|
||||
renderer.renderStandardBlock( blk, x, y, z );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -419,8 +419,7 @@ public class Registration
|
||||
}
|
||||
catch (Throwable e)
|
||||
{
|
||||
AELog.severe( "Error with Feature: " + c.getName() );
|
||||
throw new RuntimeException( e );
|
||||
throw new RuntimeException( "Error with Feature: " + c.getName(), e );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -575,6 +575,8 @@ public class CableBusContainer implements AEMultiTile, ICableBusContainer
|
||||
{
|
||||
byte sides = data.readByte();
|
||||
|
||||
boolean updateBlock = false;
|
||||
|
||||
for (int x = 0; x < 7; x++)
|
||||
{
|
||||
ForgeDirection side = ForgeDirection.getOrientation( x );
|
||||
@@ -589,7 +591,10 @@ public class CableBusContainer implements AEMultiTile, ICableBusContainer
|
||||
|
||||
ItemStack current = p != null ? p.getItemStack( PartItemStack.Network ) : null;
|
||||
if ( current != null && current.getItem() == myItem && current.getItemDamage() == dmgValue )
|
||||
p.readFromStream( data );
|
||||
{
|
||||
if ( p.readFromStream( data ) )
|
||||
updateBlock = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
removePart( side, false );
|
||||
@@ -607,7 +612,9 @@ public class CableBusContainer implements AEMultiTile, ICableBusContainer
|
||||
removePart( side, false );
|
||||
}
|
||||
|
||||
return fc.readFromStream( data );
|
||||
if ( fc.readFromStream( data ) )
|
||||
return true;
|
||||
return updateBlock;
|
||||
}
|
||||
|
||||
ForgeDirection getSide(IPart part)
|
||||
|
||||
@@ -284,7 +284,7 @@ public class PartCable extends AEBasePart implements IPartCable
|
||||
int cs = data.readByte();
|
||||
int sideOut = data.readInt();
|
||||
|
||||
EnumSet<ForgeDirection> myC = connections;
|
||||
EnumSet<ForgeDirection> myC = connections.clone();
|
||||
boolean wasPowered = powered;
|
||||
powered = false;
|
||||
boolean chchanged = false;
|
||||
|
||||
Reference in New Issue
Block a user