Fixed Lignite and its registration, added 2 more variants - same texture.

This commit is contained in:
Robert Sosnitzka
2016-07-19 00:46:29 +02:00
parent 114cb69985
commit bac0955b44
5 changed files with 31 additions and 11 deletions

View File

@@ -11,6 +11,12 @@ public class BasicItem extends Item {
this.oreDictPrefix = oreDictPrefix;
}
public BasicItem(String name, String oreDictPrefix, String registryname) {
setUnlocalizedName(name);
setRegistryName(registryname);
this.oreDictPrefix = oreDictPrefix;
}
public BasicItem(String name) {
this(name, null);
}