Continue the "Great refactor of 2017". Massive variable name refactoring and start splitting crafting table recipes to their own class.
This commit is contained in:
parent
6d931b232d
commit
6a70424252
133 changed files with 1579 additions and 1622 deletions
|
@ -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.ADJUSTABLE_SU, 1);
|
||||
writeToNBTWithoutCoords(tileEntity, energy);
|
||||
dropStack.setTagCompound(new NBTTagCompound());
|
||||
dropStack.getTagCompound().setTag("tileEntity", tileEntity);
|
||||
|
|
|
@ -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.MACHINE_CASINGS, ModBlocks.MACHINE_CASINGS, BlockMachineCasing.types);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import techreborn.init.ModBlocks;
|
|||
public class ItemBlockMachineFrame extends ItemBlockBase {
|
||||
|
||||
public ItemBlockMachineFrame(Block block) {
|
||||
super(ModBlocks.machineframe, ModBlocks.machineframe, BlockMachineFrame.types);
|
||||
super(ModBlocks.MACHINE_FRAMES, ModBlocks.MACHINE_FRAMES, BlockMachineFrame.types);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import techreborn.init.ModBlocks;
|
|||
public class ItemBlockOre extends ItemBlockBase {
|
||||
|
||||
public ItemBlockOre(Block block) {
|
||||
super(ModBlocks.ore, ModBlocks.ore, BlockOre.ores);
|
||||
super(ModBlocks.ORE, ModBlocks.ORE, BlockOre.ores);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import techreborn.init.ModBlocks;
|
|||
public class ItemBlockOre2 extends ItemBlockBase {
|
||||
|
||||
public ItemBlockOre2(Block block) {
|
||||
super(ModBlocks.ore2, ModBlocks.ore2, BlockOre2.ores);
|
||||
super(ModBlocks.ORE2, ModBlocks.ORE2, BlockOre2.ores);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -7,6 +7,6 @@ import techreborn.init.ModBlocks;
|
|||
|
||||
public class ItemBlockPlayerDetector extends ItemBlockBase {
|
||||
public ItemBlockPlayerDetector(Block block) {
|
||||
super(ModBlocks.playerDetector, ModBlocks.playerDetector, BlockPlayerDetector.types);
|
||||
super(ModBlocks.PLAYER_DETECTOR, ModBlocks.PLAYER_DETECTOR, BlockPlayerDetector.types);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import techreborn.init.ModBlocks;
|
|||
public class ItemBlockStorage extends ItemBlockBase {
|
||||
|
||||
public ItemBlockStorage(Block block) {
|
||||
super(ModBlocks.storage, ModBlocks.storage, BlockStorage.types);
|
||||
super(ModBlocks.STORAGE, ModBlocks.STORAGE, BlockStorage.types);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ import techreborn.init.ModBlocks;
|
|||
public class ItemBlockStorage2 extends ItemBlockBase {
|
||||
|
||||
public ItemBlockStorage2(Block block) {
|
||||
super(ModBlocks.storage2, ModBlocks.storage2, BlockStorage2.types);
|
||||
super(ModBlocks.STORAGE2, ModBlocks.STORAGE2, BlockStorage2.types);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue