Fix Netherite not working for certain skills (like Skull Splitter)

This commit is contained in:
nossr50
2020-07-30 16:12:50 -07:00
parent 9f9518eea0
commit a05c015732
2 changed files with 3 additions and 1 deletions

View File

@ -980,6 +980,8 @@ public final class CombatUtils {
}
else if (ItemUtils.isDiamondTool(inHand)) {
tier = 4;
} else if (ItemUtils.isNetheriteTool(inHand)) {
tier = 5;
}
else if (mcMMO.getModManager().isCustomTool(inHand)) {
tier = mcMMO.getModManager().getTool(inHand).getTier();