Fixed check for max storage for chests. Closes #1026

This commit is contained in:
drcrazy 2017-09-22 04:03:20 +03:00
parent 833974d698
commit ae75191c00
6 changed files with 40 additions and 76 deletions

View file

@ -46,8 +46,8 @@ public class TileCreativeSolarPanel extends TilePowerAcceptor implements IToolDr
int powerToAdd;
@Override
public void updateEntity() {
super.updateEntity();
public void update() {
super.update();
this.setEnergy(getMaxPower());
}