Right click the fusion control computer with coils to autoplace them.

This commit is contained in:
modmuss50 2018-04-18 15:07:28 +01:00
parent d94eb03a06
commit 10106715d3
2 changed files with 24 additions and 1 deletions

View file

@ -99,7 +99,7 @@ public class TileFusionControlComputer extends TilePowerAcceptor
* @param pos coordinate for block
* @return boolean Returns true if block is fusion coil
*/
private boolean isCoil(final BlockPos pos) {
public boolean isCoil(final BlockPos pos) {
return this.world.getBlockState(pos).getBlock() == ModBlocks.FUSION_COIL;
}