fix bug duplication #1012

This commit is contained in:
alexpic57 2017-09-08 21:18:57 +02:00
parent 1d873c2d33
commit 885ba9210c
3 changed files with 38 additions and 5 deletions

View file

@ -365,6 +365,6 @@ public class TileFusionControlComputer extends TilePowerAcceptor implements IInv
.syncIntegerValue(this::getCoilStatus, this::setCoilStatus)
.syncIntegerValue(this::getCrafingTickTime, this::setCrafingTickTime)
.syncIntegerValue(this::getFinalTickTime, this::setFinalTickTime)
.syncIntegerValue(this::getNeededPower, this::setNeededPower).addInventory().create();
.syncIntegerValue(this::getNeededPower, this::setNeededPower).addInventory().create(this);
}
}