Removed Farm
This commit is contained in:
parent
97d990e316
commit
081f16a533
17 changed files with 1 additions and 946 deletions
|
@ -66,7 +66,6 @@ public class ModBlocks {
|
|||
public static Block heatGenerator;
|
||||
public static Block industrialSawmill;
|
||||
public static Block chargeBench;
|
||||
public static Block farm;
|
||||
|
||||
public static Block ore;
|
||||
public static Block storage;
|
||||
|
@ -249,9 +248,7 @@ public class ModBlocks {
|
|||
machineframe = new BlockMachineFrame(Material.iron);
|
||||
GameRegistry.registerBlock(machineframe, ItemBlockMachineFrame.class, "techreborn.machineFrame");
|
||||
|
||||
farm = new BlockFarm();
|
||||
GameRegistry.registerBlock(farm, "techreborn.farm");
|
||||
GameRegistry.registerTileEntity(TileFarm.class, "TileFarmTR");
|
||||
|
||||
|
||||
|
||||
registerOreDict();
|
||||
|
|
|
@ -78,7 +78,6 @@ public class ModItems {
|
|||
public static Item hammerIron;
|
||||
public static Item hammerDiamond;
|
||||
public static Item upgrades;
|
||||
public static Item farmPatten;
|
||||
|
||||
|
||||
public static void init() {
|
||||
|
@ -134,9 +133,6 @@ public class ModItems {
|
|||
hammerDiamond.setUnlocalizedName("hammerDiamond").setContainerItem(hammerDiamond);
|
||||
GameRegistry.registerItem(hammerDiamond, "hammerDiamond");
|
||||
|
||||
farmPatten = new ItemFarmPatten();
|
||||
GameRegistry.registerItem(farmPatten, "farmPatten");
|
||||
|
||||
cloakingDevice = new ItemCloakingDevice();
|
||||
GameRegistry.registerItem(cloakingDevice, "cloakingdevice");
|
||||
|
||||
|
|
|
@ -5,7 +5,6 @@ import net.minecraft.item.ItemStack;
|
|||
import techreborn.partSystem.IPartProvider;
|
||||
import techreborn.partSystem.ModPartRegistry;
|
||||
import techreborn.partSystem.parts.CablePart;
|
||||
import techreborn.partSystem.parts.FarmInventoryCable;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
|
@ -21,7 +20,6 @@ public class ModParts {
|
|||
ModPartRegistry.registerPart(part);
|
||||
}
|
||||
}
|
||||
ModPartRegistry.registerPart(new FarmInventoryCable());
|
||||
ModPartRegistry.addProvider("techreborn.partSystem.fmp.FMPFactory",
|
||||
"ForgeMultipart");
|
||||
ModPartRegistry.addProvider("techreborn.partSystem.QLib.QModPartFactory", "qmunitylib");
|
||||
|
|
|
@ -25,7 +25,6 @@ import techreborn.blocks.BlockOre;
|
|||
import techreborn.blocks.BlockStorage;
|
||||
import techreborn.blocks.BlockStorage2;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import techreborn.farm.FarmTree;
|
||||
import techreborn.items.ItemCells;
|
||||
import techreborn.items.ItemDusts;
|
||||
import techreborn.items.ItemDustsSmall;
|
||||
|
@ -67,7 +66,6 @@ public class
|
|||
addBlastFurnaceRecipes();
|
||||
addIndustrialGrinderRecipes();
|
||||
addImplosionCompressorRecipes();
|
||||
addLogs();
|
||||
}
|
||||
|
||||
static void addGeneralShapedRecipes() {
|
||||
|
@ -1544,11 +1542,4 @@ public class
|
|||
|
||||
}
|
||||
|
||||
static void addLogs() {
|
||||
FarmTree.harvestableLogs.add(Blocks.log);
|
||||
FarmTree.harvestableLogs.add(Blocks.log2);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue