mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Some stray text fixes
This commit is contained in:
parent
5d126afc18
commit
12d74214ed
1 changed files with 1 additions and 2 deletions
|
@ -127,7 +127,7 @@ class BrutalHordechiefChooseBlockersEffect extends ContinuousRuleModifyingEffect
|
||||||
|
|
||||||
public BrutalHordechiefChooseBlockersEffect() {
|
public BrutalHordechiefChooseBlockersEffect() {
|
||||||
super(Duration.EndOfTurn, Outcome.Benefit, false, false);
|
super(Duration.EndOfTurn, Outcome.Benefit, false, false);
|
||||||
staticText = "You choose which creatures block this turn and how those creatures block";
|
staticText = ", and you choose how those creatures block";
|
||||||
}
|
}
|
||||||
|
|
||||||
public BrutalHordechiefChooseBlockersEffect(final BrutalHordechiefChooseBlockersEffect effect) {
|
public BrutalHordechiefChooseBlockersEffect(final BrutalHordechiefChooseBlockersEffect effect) {
|
||||||
|
@ -153,7 +153,6 @@ class BrutalHordechiefChooseBlockersEffect extends ContinuousRuleModifyingEffect
|
||||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
Player blockController = game.getPlayer(source.getControllerId());
|
Player blockController = game.getPlayer(source.getControllerId());
|
||||||
if (blockController != null) {
|
if (blockController != null) {
|
||||||
game.informPlayers(source.getSourceObject(game).getIdName() + " applies");
|
|
||||||
game.getCombat().selectBlockers(blockController, game);
|
game.getCombat().selectBlockers(blockController, game);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue