#releaseBuild

This commit is contained in:
drcrazy 2017-09-16 01:06:26 +03:00
parent 01c04c27bb
commit be88077f8c
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@ configurations {
compile.extendsFrom shade
}
version = "2.7.1"
version = "2.7.2"
def ENV = System.getenv()
if (ENV.BUILD_NUMBER) {

View file

@ -252,7 +252,7 @@ public class TileIndustrialBlastFurnace extends TilePowerAcceptor implements ITo
@Override
public BuiltContainer createContainer(final EntityPlayer player) {
return new ContainerBuilder("blastfurnace").player(player.inventory).inventory().hotbar().addInventory()
.tile(this).slot(0, 50, 27).slot(1, 50, 47).outputSlot(2, 92, 36).outputSlot(3, 110, 36)
.tile(this).slot(0, 50, 27).slot(1, 50, 47).outputSlot(2, 93, 37).outputSlot(3, 113, 37)
.energySlot(4, 8, 72).syncEnergyValue().syncCrafterValue()
.syncIntegerValue(this::getHeat, this::setHeat).addInventory().create(this);
}