* Polukranos, World Eater - Fixed a bug, that the damage made by the targeted creatures did not set the source correctly. So e.g. deathtouch was not applied to Polukranos.

This commit is contained in:
LevelX2 2014-01-18 23:27:20 +01:00
parent fd5a943164
commit 6c64e9baf7

View file

@ -145,7 +145,7 @@ class PolukranosWorldEaterEffect extends OneShotEffect<PolukranosWorldEaterEffec
Permanent sourceCreature = game.getPermanent(source.getSourceId());
if (sourceCreature != null) {
for (Permanent permanent :permanents) {
sourceCreature.damage(permanent.getPower().getValue(), source.getSourceId(), game, true, false);
sourceCreature.damage(permanent.getPower().getValue(), permanent.getId(), game, true, false);
}
}
return true;