Improve block names

This commit is contained in:
modmuss50 2016-12-05 09:40:55 +00:00
parent 40835a2773
commit 2fdce5405b
46 changed files with 419 additions and 419 deletions

View file

@ -63,7 +63,7 @@ public class ItemBlockAesu extends ItemBlock {
public ItemStack getDropWithNBT(double energy) {
NBTTagCompound tileEntity = new NBTTagCompound();
ItemStack dropStack = new ItemStack(ModBlocks.Aesu, 1);
ItemStack dropStack = new ItemStack(ModBlocks.AESU, 1);
writeToNBTWithoutCoords(tileEntity, energy);
dropStack.setTagCompound(new NBTTagCompound());
dropStack.getTagCompound().setTag("tileEntity", tileEntity);

View file

@ -8,7 +8,7 @@ import techreborn.init.ModBlocks;
public class ItemBlockMachineCasing extends ItemMultiTexture {
public ItemBlockMachineCasing(Block block) {
super(ModBlocks.MachineCasing, ModBlocks.MachineCasing, BlockMachineCasing.types);
super(ModBlocks.machineCasing, ModBlocks.machineCasing, BlockMachineCasing.types);
}
}