Fixed attack/block combat updating.

This commit is contained in:
Doublestrike
2012-02-13 06:11:10 +00:00
parent 751ac48f77
commit b10d44b2e5
2 changed files with 3 additions and 0 deletions

View File

@@ -114,6 +114,7 @@ public class InputAttack extends Input {
com.execute(); com.execute();
} }
CombatUtil.showCombat();
} }
else { else {
((GuiTopLevel) AllZone.getDisplay()).getController().getMatchController().getView().getInputController().remind(); ((GuiTopLevel) AllZone.getDisplay()).getController().getMatchController().getView().getInputController().remind();

View File

@@ -83,6 +83,8 @@ public class InputBlock extends Input {
sb.append("To cancel a block right-click on your blocker"); sb.append("To cancel a block right-click on your blocker");
AllZone.getDisplay().showMessage(sb.toString()); AllZone.getDisplay().showMessage(sb.toString());
} }
CombatUtil.showCombat();
} }
/** {@inheritDoc} */ /** {@inheritDoc} */