Adds sound effects to Blacksmiths and Scrappers
This commit is contained in:
src/main/java/net/knarcraft/blacksmith
@ -105,6 +105,9 @@ public final class ItemHelper {
|
||||
public static @NotNull Set<Material> getAllReforgeAbleMaterials() {
|
||||
Set<Material> reforgeAbleMaterials = new HashSet<>();
|
||||
for (Material material : Material.values()) {
|
||||
if (!material.isItem()) {
|
||||
continue;
|
||||
}
|
||||
ItemStack item = new ItemStack(material);
|
||||
if (isRepairable(item)) {
|
||||
reforgeAbleMaterials.add(material);
|
||||
|
Reference in New Issue
Block a user