hopefully the final fix for Monstrous Step

This commit is contained in:
Evan Kranzler 2020-04-24 21:07:18 -04:00
parent 4b92209fe1
commit c02a0c633c

View file

@ -65,7 +65,7 @@ class MonstrousStepEffect extends RequirementEffect {
MonstrousStepEffect() {
super(Duration.EndOfTurn);
staticText = "Another target creature blocks it this turn if able";
staticText = "Up to one other target creature blocks it this turn if able";
}
private MonstrousStepEffect(final MonstrousStepEffect effect) {
@ -94,7 +94,7 @@ class MonstrousStepEffect extends RequirementEffect {
@Override
public UUID mustBlockAttacker(Ability source, Game game) {
return source.getTargets().get(1).getFirstTarget();
return source.getFirstTarget();
}
@Override