Adding some texts.

This commit is contained in:
marcins78@gmail.com
2011-11-21 22:11:05 +00:00
parent 131a5bf022
commit db912d2ae5
2 changed files with 2 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ public class ReconcileHandEffect extends AbstractEffect {
@Override
protected FullEffectResult playEffectReturningResult(LotroGame game) {
PlayerReconcilesAction action = new PlayerReconcilesAction(game, _playerId);
game.getGameState().sendMessage(_playerId + " reconciles");
game.getActionsEnvironment().addActionToStack(action);
return new FullEffectResult(null, true, true);
}

View File

@@ -21,6 +21,7 @@ public class ArcheryFireGameProcess implements GameProcess {
_fellowshipArcheryTotal = RuleUtils.calculateFellowshipArcheryTotal(_game);
_shadowArcheryTotal = RuleUtils.calculateShadowArcheryTotal(_game);
game.getGameState().sendMessage("Archery fire: fellowship - " + _fellowshipArcheryTotal + ", minion - " + _shadowArcheryTotal);
}
@Override