Recipe for alarm and misc fixes

This commit is contained in:
Dimmerworld 2018-01-03 15:17:20 +11:00
parent 2177b72e41
commit 86d37514a7
3 changed files with 3 additions and 1 deletions

View file

@ -46,7 +46,7 @@ public class BlockAlarm extends BaseTileBlock {
super(Material.ROCK);
setUnlocalizedName("techreborn.alarm");
this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.NORTH).withProperty(ACTIVE, false));
this.bbs = GenBoundingBoxes(0.19, 0.8);
this.bbs = GenBoundingBoxes(0.19, 0.81);
setCreativeTab(TechRebornCreativeTab.instance);
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/lighting"));
}