[KHC] fixed Spectral Deluge looking at power rather than toughness (fixes #7464)

This commit is contained in:
Evan Kranzler 2021-01-29 12:06:11 -05:00
parent 47f289fb34
commit 7c68284173

View file

@ -57,7 +57,7 @@ enum SpectralDelugePredicate implements ObjectSourcePlayerPredicate<ObjectSource
public boolean apply(ObjectSourcePlayer<MageObject> input, Game game) {
return input
.getObject()
.getPower()
.getToughness()
.getValue()
<= game
.getBattlefield()