More stuff ingame and showing up.

This commit is contained in:
Sebastian Hartte
2020-06-01 01:01:32 +02:00
parent 6a88728544
commit 077ff17078
864 changed files with 11515 additions and 11761 deletions
+2 -2
View File
@@ -309,7 +309,7 @@ public abstract class AEBasePart implements IPart, IGridProxyable, IActionHost,
@Override
@OnlyIn( Dist.CLIENT )
public void randomDisplayTick( final World world, final BlockPos pos, final Random r )
public void animateTick( final World world, final BlockPos pos, final Random r )
{
}
@@ -415,7 +415,7 @@ public abstract class AEBasePart implements IPart, IGridProxyable, IActionHost,
( (AppEngInternalAEInventory) inv ).writeToNBT( output, "config" );
}
return output.hasNoTags() ? null : output;
return output.isEmpty() ? null : output;
}
public boolean useStandardMemoryCard()
@@ -901,14 +901,14 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
}
@Override
public void randomDisplayTick( final World world, final BlockPos pos, final Random r )
public void animateTick( final World world, final BlockPos pos, final Random r )
{
for( final AEPartLocation side : AEPartLocation.values() )
{
final IPart p = this.getPart( side );
if( p != null )
{
p.randomDisplayTick( world, pos, r );
p.animateTick( world, pos, r );
}
}
}
@@ -67,7 +67,7 @@ public interface ICableBusContainer
boolean isLadder( LivingEntity entity );
@OnlyIn( Dist.CLIENT )
void randomDisplayTick( World world, BlockPos pos, Random r );
void animateTick( World world, BlockPos pos, Random r );
int getLightValue();
@@ -107,7 +107,7 @@ public class NullCableBusContainer implements ICableBusContainer
}
@Override
public void randomDisplayTick( final World world, final BlockPos pos, final Random r )
public void animateTick( final World world, final BlockPos pos, final Random r )
{
}
@@ -441,7 +441,7 @@ public class PartLevelEmitter extends PartUpgradeable implements IEnergyWatcherH
}
@Override
public void randomDisplayTick( final World world, final BlockPos pos, final Random r )
public void animateTick( final World world, final BlockPos pos, final Random r )
{
if( this.isLevelEmitterOn() )
{
@@ -223,7 +223,7 @@ public class PartCableAnchor implements IPart
}
@Override
public void randomDisplayTick( final World world, final BlockPos pos, final Random r )
public void animateTick( final World world, final BlockPos pos, final Random r )
{
}