Remove some crap
This commit is contained in:
parent
3e99b11291
commit
d1ca1eaa74
11 changed files with 25 additions and 159 deletions
|
@ -18,6 +18,10 @@ import techreborn.items.*;
|
|||
import techreborn.items.armor.ItemLapotronPack;
|
||||
import techreborn.items.armor.ItemLithiumBatpack;
|
||||
import techreborn.items.armor.ItemTRArmour;
|
||||
import techreborn.items.battery.ItemEnergyCrystal;
|
||||
import techreborn.items.battery.ItemLapotronCrystal;
|
||||
import techreborn.items.battery.ItemLithiumBattery;
|
||||
import techreborn.items.battery.ItemReBattery;
|
||||
import techreborn.items.tools.*;
|
||||
import techreborn.api.Reference;
|
||||
|
||||
|
@ -157,8 +161,6 @@ public class ModItems
|
|||
GameRegistry.registerItem(plate, "plates");
|
||||
nuggets = new ItemNuggets();
|
||||
GameRegistry.registerItem(nuggets, "nuggets");
|
||||
crushedOre = new ItemCrushedOre();
|
||||
GameRegistry.registerItem(crushedOre, "crushedore");
|
||||
// purifiedCrushedOre = new ItemPurifiedCrushedOre();
|
||||
// GameRegistry.registerItem(purifiedCrushedOre, "purifiedCrushedOre");
|
||||
parts = new ItemParts();
|
||||
|
@ -827,26 +829,6 @@ public class ModItems
|
|||
OreUnifier.registerOre("plateYellowGarnet", ItemPlates.getPlateByName("yellowGarnet"));
|
||||
OreUnifier.registerOre("plateZinc", ItemPlates.getPlateByName("zinc"));
|
||||
|
||||
// Crushed Ore
|
||||
OreUnifier.registerOre("crushedAluminum", ItemCrushedOre.getCrushedOreByName("Aluminum"));
|
||||
OreUnifier.registerOre("crushedAluminium", ItemCrushedOre.getCrushedOreByName("Aluminum"));
|
||||
OreUnifier.registerOre("crushedArdite", ItemCrushedOre.getCrushedOreByName("Ardite"));
|
||||
OreUnifier.registerOre("crushedBauxite", ItemCrushedOre.getCrushedOreByName("Bauxite"));
|
||||
OreUnifier.registerOre("crushedCadmium", ItemCrushedOre.getCrushedOreByName("Cadmium"));
|
||||
OreUnifier.registerOre("crushedCinnabar", ItemCrushedOre.getCrushedOreByName("Cinnabar"));
|
||||
OreUnifier.registerOre("crushedCobalt", ItemCrushedOre.getCrushedOreByName("Cobalt"));
|
||||
OreUnifier.registerOre("crushedDarkIron", ItemCrushedOre.getCrushedOreByName("DarkIron"));
|
||||
OreUnifier.registerOre("crushedGalena", ItemCrushedOre.getCrushedOreByName("Galena"));
|
||||
OreUnifier.registerOre("crushedIndium", ItemCrushedOre.getCrushedOreByName("Indium"));
|
||||
OreUnifier.registerOre("crushedIridium", ItemCrushedOre.getCrushedOreByName("Iridium"));
|
||||
OreUnifier.registerOre("crushedNickel", ItemCrushedOre.getCrushedOreByName("Nickel"));
|
||||
OreUnifier.registerOre("crushedOsmium", ItemCrushedOre.getCrushedOreByName("Osmium"));
|
||||
OreUnifier.registerOre("crushedPlatinum", ItemCrushedOre.getCrushedOreByName("Platinum"));
|
||||
OreUnifier.registerOre("crushedPyrite", ItemCrushedOre.getCrushedOreByName("Pyrite"));
|
||||
OreUnifier.registerOre("crushedSphalerite", ItemCrushedOre.getCrushedOreByName("Sphalerite"));
|
||||
OreUnifier.registerOre("crushedTetrahedrite", ItemCrushedOre.getCrushedOreByName("Tetrahedrite"));
|
||||
OreUnifier.registerOre("crushedTungsten", ItemCrushedOre.getCrushedOreByName("Tungsten"));
|
||||
|
||||
OreUnifier.registerOre("diamondTR", ItemDusts.getDustByName("Diamond"));
|
||||
OreUnifier.registerOre("diamondTR", Items.diamond);
|
||||
|
||||
|
|
|
@ -5,7 +5,6 @@ import techreborn.api.ISubItemRetriever;
|
|||
import techreborn.blocks.BlockOre;
|
||||
import techreborn.blocks.BlockStorage;
|
||||
import techreborn.items.ItemCells;
|
||||
import techreborn.items.ItemCrushedOre;
|
||||
import techreborn.items.ItemDusts;
|
||||
import techreborn.items.ItemDustsSmall;
|
||||
import techreborn.items.ItemGems;
|
||||
|
@ -35,16 +34,6 @@ public class SubItemRetriever implements ISubItemRetriever {
|
|||
return ItemCells.getCellByName(name, count, lookForIC2);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getCrushedOreByName(String name) {
|
||||
return ItemCrushedOre.getCrushedOreByName(name);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getCrushedOreByName(String name, int count) {
|
||||
return ItemCrushedOre.getCrushedOreByName(name, count);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getDustByName(String name) {
|
||||
return ItemDusts.getDustByName(name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue