Fix some BBD card text

This commit is contained in:
Plopman 2018-06-06 23:23:55 +02:00
parent 2662fa7799
commit cd6a847db7
19 changed files with 24 additions and 24 deletions

View file

@ -77,11 +77,11 @@ public class BeginningOfCombatTriggeredAbility extends TriggeredAbilityImpl {
public String getRule() {
switch (targetController) {
case YOU:
return "At the beginning of combat on your turn, " + generateZoneString() + getEffects().getText(modes.getMode());
return "At the beginning of combat on your turn, " + generateZoneString() + super.getRule();
case OPPONENT:
return "At the beginning of each opponent's combat step, " + generateZoneString() + getEffects().getText(modes.getMode());
return "At the beginning of each opponent's combat step, " + generateZoneString() + super.getRule();
case ANY:
return "At the beginning of each combat, " + generateZoneString() + getEffects().getText(modes.getMode());
return "At the beginning of each combat, " + generateZoneString() + super.getRule();
}
return "";
}