Added coils check in onLoad. Closes #1337
This commit is contained in:
parent
5f2ddec821
commit
5bfe649360
1 changed files with 5 additions and 0 deletions
|
@ -170,6 +170,11 @@ public class TileFusionControlComputer extends TilePowerAcceptor implements IToo
|
||||||
return this.world.getBlockState(new BlockPos(x, y, z)).getBlock() == ModBlocks.FUSION_COIL;
|
return this.world.getBlockState(new BlockPos(x, y, z)).getBlock() == ModBlocks.FUSION_COIL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onLoad() {
|
||||||
|
this.checkCoils();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void update() {
|
public void update() {
|
||||||
super.update();
|
super.update();
|
||||||
|
|
Loading…
Reference in a new issue