mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* Ulasht, the Hate Seed - Fixed that it always came to battlefield with zero +1/+1 counters.
This commit is contained in:
parent
601dd29c9e
commit
0f3a72de06
1 changed files with 4 additions and 4 deletions
|
@ -121,7 +121,7 @@ class UlashtTheHateSeedEffect extends OneShotEffect {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||
Permanent permanent = game.getPermanentEntering(source.getSourceId());
|
||||
if (permanent != null && player != null) {
|
||||
int amount = game.getBattlefield().count(filterRed, source.getSourceId(), source.getControllerId(), game);
|
||||
amount += game.getBattlefield().count(filterGreen, source.getSourceId(), source.getControllerId(), game);
|
||||
|
|
Loading…
Reference in a new issue