Possible fix for ore generation

This commit is contained in:
DarkGuardsman 2013-10-23 08:31:32 -04:00
parent 23a4f53380
commit baaccba6ea
2 changed files with 6 additions and 5 deletions

View file

@ -11,6 +11,7 @@ public class DMCreativeTab extends CreativeTabs
public static DMCreativeTab tabAutomation = new DMCreativeTab("Automation");
public static DMCreativeTab tabIndustrial = new DMCreativeTab("Industrial");
public static DMCreativeTab tabHydrualic = new DMCreativeTab("Hydrualic");
public static DMCreativeTab tabMining = new DMCreativeTab("Mining");
public DMCreativeTab(String label)
{

View file

@ -83,11 +83,11 @@ public class BlockOre extends Block implements IExtraBlockInfo
public static enum OreData
{
TIN(EnumMaterial.TIN, "tin", "oreTin", 70, 22, 10),
COPPER(EnumMaterial.COPPER, "copper", "copperOre", 70, 22, 10),
SILVER(EnumMaterial.SILVER, "silver", "silverOre", 40, 15, 6),
LEAD(EnumMaterial.LEAD, "lead", "leadOre", 50, 8, 3),
Bauxite(EnumMaterial.ALUMINIUM, "bauxite", "bauxiteOre", 50, 8, 3);
TIN(EnumMaterial.TIN, "tin", "oreTin", 30, 5, 128),
COPPER(EnumMaterial.COPPER, "copper", "copperOre", 30, 7, 128),
SILVER(EnumMaterial.SILVER, "silver", "silverOre", 10, 3, 45),
LEAD(EnumMaterial.LEAD, "lead", "leadOre", 16, 8, 30),
Bauxite(EnumMaterial.ALUMINIUM, "bauxite", "bauxiteOre", 100, 30, 128);
public String name, oreName;
public ItemStack stack;