Added saltpeter and sulfur, used for gunpowder creation and will be used for other things.

This commit is contained in:
WayofTime 2016-05-06 17:51:39 -04:00
parent ec2ddbd427
commit d79be6d312
6 changed files with 20 additions and 0 deletions

View file

@ -46,6 +46,8 @@ public class ItemComponent extends Item implements IVariantProvider
public static final String SAND_GOLD = "goldSand";
public static final String SAND_COAL = "coalSand";
public static final String PLANT_OIL = "plantOil";
public static final String SULFUR = "sulfur";
public static final String SALTPETER = "saltpeter";
public ItemComponent()
{
@ -83,6 +85,8 @@ public class ItemComponent extends Item implements IVariantProvider
names.add(20, SAND_GOLD);
names.add(21, SAND_COAL);
names.add(22, PLANT_OIL);
names.add(23, SULFUR);
names.add(24, SALTPETER);
}
@Override