Removed unnecessary tungsten references

This commit is contained in:
Anuken
2018-08-18 23:02:10 -04:00
parent a60ce3c54c
commit b872252771
5 changed files with 10 additions and 5 deletions

View File

@@ -8,11 +8,16 @@ import io.anuke.mindustry.type.Item;
import io.anuke.mindustry.type.ItemType;
public class Items implements ContentList{
public static Item stone, lead, coal, carbide, titanium, thorium, silicon, plastanium, phasematter, surgealloy,
public static Item stone, aluminum, lead, coal, carbide, titanium, thorium, silicon, plastanium, phasematter, surgealloy,
biomatter, sand, blastCompound, pyratite;
@Override
public void load(){
aluminum = new Item("aluminum", Color.valueOf("8e85a2")){{
type = ItemType.material;
hardness = 1;
cost = 0.6f;
}};
lead = new Item("lead", Color.valueOf("8e85a2")){{
type = ItemType.material;

View File

@@ -13,7 +13,6 @@ public class Recipes implements ContentList{
@Override
public void load(){
//WALLS
/*
new Recipe(defense, DefenseBlocks.tungstenWall, new ItemStack(Items.tungsten, 12));
new Recipe(defense, DefenseBlocks.tungstenWallLarge, new ItemStack(Items.tungsten, 12 * 4));