Merge pull request #112 from garyttierney/bugfix/equip-2h-stop-action

Fix actions continuing when equipping 2h swords
This commit is contained in:
Major
2015-12-26 19:21:08 +00:00
@@ -94,6 +94,8 @@ public final class EquipItemHandler extends MessageHandler<ItemOptionMessage> {
if (weapon != null) { if (weapon != null) {
inventory.add(weapon); inventory.add(weapon);
} }
player.stopAction();
return; return;
} }