Remove offhand fishing rod if not in main hand

Fixes mcMMO-Dev/mcMMO#3342
Fixed style error in last commit
This commit is contained in:
ezeiger92
2018-02-15 13:59:10 -08:00
parent 40b609ccd8
commit 6d2003d577
2 changed files with 4 additions and 1 deletions

View File

@ -188,7 +188,7 @@ public class SkillUtils {
* @param maxDamageModifier the amount to adjust the max damage by
*/
public static void handleDurabilityChange(ItemStack itemStack, int durabilityModifier, double maxDamageModifier) {
if(itemStack.hasItemMeta() && itemStack.getItemMeta().isUnbreakable()) {
if (itemStack.hasItemMeta() && itemStack.getItemMeta().isUnbreakable()) {
return;
}