Don't handle item pickups when Items_As_Unarmed is set to true

If `unarmed.Items_As_Unarmed` is set to true in config, then there's no
need to be manually handling item pickups.
This commit is contained in:
RoboMWM 2016-10-23 22:38:31 -07:00
parent a51585f5d0
commit 86432eb426

View File

@ -332,7 +332,7 @@ public class PlayerListener implements Listener {
}
}
if ((mcMMOPlayer.isUsingUnarmed() && ItemUtils.isSharable(dropStack)) || mcMMOPlayer.getAbilityMode(AbilityType.BERSERK)) {
if ((mcMMOPlayer.isUsingUnarmed() && ItemUtils.isSharable(dropStack) && !Config.getInstance().getUnarmedItemsAsUnarmed()) || mcMMOPlayer.getAbilityMode(AbilityType.BERSERK)) {
boolean pickupSuccess = Unarmed.handleItemPickup(player.getInventory(), drop);
boolean cancel = Config.getInstance().getUnarmedItemPickupDisabled() || pickupSuccess;
event.setCancelled(cancel);