Fixed RF output delay when loading chunks
This commit is contained in:
parent
ea714ec668
commit
d0d4387dd1
1 changed files with 14 additions and 0 deletions
|
@ -193,6 +193,20 @@ public abstract class TileEntityAbstractEnergy extends TileEntityAbstractInterfa
|
|||
}
|
||||
|
||||
// Minecraft overrides
|
||||
@Override
|
||||
protected void onFirstUpdateTick() {
|
||||
super.onFirstUpdateTick();
|
||||
|
||||
if (worldObj.isRemote) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Thermal Expansion
|
||||
if (WarpDriveConfig.isCoFHCoreLoaded) {
|
||||
CoFH_scanForEnergyHandlers();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateEntity() {
|
||||
super.updateEntity();
|
||||
|
|
Loading…
Add table
Reference in a new issue