* Ulasht, the Hate Seed - Fixed that it always came to battlefield with zero +1/+1 counters.

This commit is contained in:
LevelX2 2015-10-21 15:45:21 +02:00
parent 601dd29c9e
commit 0f3a72de06

View file

@ -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);