Changed Aeternium crafts

This commit is contained in:
Aleksey 2021-01-06 15:34:01 +03:00
parent 2a2641eea3
commit 22b10fe134
15 changed files with 576 additions and 360 deletions

View file

@ -12,4 +12,13 @@ public class RecipeHelper {
return Registry.ITEM.getId(item.asItem()) != Registry.ITEM.getDefaultId();
}
}
public static boolean exists(ItemConvertible... items) {
for (ItemConvertible item : items) {
if (!exists(item)) {
return false;
}
}
return true;
}
}