mirror of
https://github.com/correl/mage.git
synced 2025-04-03 17:00:16 -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) {
|
if (controller != null) {
|
||||||
int destroyedCreature = 0;
|
int destroyedCreature = 0;
|
||||||
for(Permanent creature: game.getState().getBattlefield().getActivePermanents(new FilterCreaturePermanent(), controller.getId(), game)) {
|
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++;
|
destroyedCreature++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue