Repair / Salvage fixes

This commit is contained in:
nossr50
2020-06-30 10:03:37 -07:00
parent b0ce6fb170
commit 78eb367b86
6 changed files with 55 additions and 19 deletions

View File

@ -1088,6 +1088,15 @@ public class MaterialMapStore {
toolBlackList.add("respawn_anchor");
}
public HashSet<String> getNetheriteArmor() {
return netheriteArmor;
}
public HashSet<String> getNetheriteTools() {
return netheriteTools;
}
public int getTier(Material material) {
return getTier(material.getKey().getKey());
}