mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
fixed Widespread Brutality sometimes not working
This commit is contained in:
parent
4556725ecd
commit
8bdb0934d0
1 changed files with 1 additions and 3 deletions
|
@ -56,9 +56,7 @@ class WidespreadBrutalityEffect extends OneShotEffect {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
AmassEffect amassEffect = new AmassEffect(2);
|
||||
if (!amassEffect.apply(game, source)) {
|
||||
return false;
|
||||
}
|
||||
amassEffect.apply(game, source);
|
||||
Permanent amassedArmy = game.getPermanent(amassEffect.getAmassedCreatureId());
|
||||
if (amassedArmy == null) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue