Added a generous amount of recipes into thermal expansion, close #1110

This commit is contained in:
modmuss50 2017-07-06 23:49:00 +01:00
parent 370d07767e
commit cead631367
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
7 changed files with 126 additions and 53 deletions

View file

@ -79,6 +79,16 @@ public class ItemDusts extends ItemTR {
return getDustByName(name, 1);
}
public static boolean hasDust(String name){
for(String type : types){
if(type.equals(name)){
return true;
}
}
return false;
}
@Override
// gets Unlocalized Name depending on meta data
public String getUnlocalizedName(ItemStack itemStack) {