mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
* 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:
parent
fd5a943164
commit
6c64e9baf7
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ class PolukranosWorldEaterEffect extends OneShotEffect<PolukranosWorldEaterEffec
|
||||||
Permanent sourceCreature = game.getPermanent(source.getSourceId());
|
Permanent sourceCreature = game.getPermanent(source.getSourceId());
|
||||||
if (sourceCreature != null) {
|
if (sourceCreature != null) {
|
||||||
for (Permanent permanent :permanents) {
|
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;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue