mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
hopefully the final fix for Monstrous Step
This commit is contained in:
parent
4b92209fe1
commit
c02a0c633c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue