mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
fixed Rakdos, the Showstopper destroying noncreature permanents
This commit is contained in:
parent
581db3d6e0
commit
5399d4d33b
1 changed files with 1 additions and 0 deletions
|
@ -76,6 +76,7 @@ class RakdosTheShowstopperEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
for (Permanent permanent : game.getBattlefield().getActivePermanents(source.getControllerId(), game)) {
|
for (Permanent permanent : game.getBattlefield().getActivePermanents(source.getControllerId(), game)) {
|
||||||
if (permanent != null
|
if (permanent != null
|
||||||
|
&& permanent.isCreature()
|
||||||
&& !permanent.hasSubtype(SubType.DEMON, game)
|
&& !permanent.hasSubtype(SubType.DEMON, game)
|
||||||
&& !permanent.hasSubtype(SubType.DEVIL, game)
|
&& !permanent.hasSubtype(SubType.DEVIL, game)
|
||||||
&& !permanent.hasSubtype(SubType.IMP, game)
|
&& !permanent.hasSubtype(SubType.IMP, game)
|
||||||
|
|
Loading…
Reference in a new issue