added receipeGroupPrefix otherwise everything will have the end-group

This commit is contained in:
Frank Bauer 2021-07-30 10:17:53 +02:00
parent dca77a58ae
commit d33187d204
2 changed files with 20 additions and 18 deletions

View file

@ -38,10 +38,12 @@ public abstract class ComplexMaterial {
protected final String baseName;
protected final String modID;
protected final String receipGroupPrefix;
public ComplexMaterial(String modID, String baseName) {
public ComplexMaterial(String modID, String baseName, String receipGroupPrefix) {
this.baseName = baseName;
this.modID = modID;
this.receipGroupPrefix = receipGroupPrefix;
MATERIALS.add(this);
}