mirror of
https://github.com/correl/mage.git
synced 2025-04-01 19:07:57 -09:00
Fixed that Fumigate was destroying creatures with regeneration shield
This commit is contained in:
parent
06aeed6238
commit
7a6ea5575c
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class FumigateEffect extends OneShotEffect {
|
|||
if (controller != null) {
|
||||
int destroyedCreature = 0;
|
||||
for(Permanent creature: game.getState().getBattlefield().getActivePermanents(new FilterCreaturePermanent(), controller.getId(), game)) {
|
||||
if (creature.destroy(source.getSourceId(), game, true)) {
|
||||
if (creature.destroy(source.getSourceId(), game, false)) {
|
||||
destroyedCreature++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue