Merge pull request #1018 from HenryLoenwind/crash4218-1.11

Prevent crashes when the used item cannot be found on the player
This commit is contained in:
Adubbz 2017-05-14 14:30:39 +10:00 committed by GitHub
commit 840ac96179
1 changed files with 1 additions and 1 deletions

View File

@ -30,6 +30,6 @@ public class PlayerUtil
return hand;
}
return null;
return EnumHand.MAIN_HAND;
}
}