* Masako the Humorless - Fixed that the thought as ability also worked unintended for creatures of opponents.

This commit is contained in:
LevelX2 2014-10-15 11:38:35 +02:00
parent f25d6930e0
commit a8d61169ad

View file

@ -100,7 +100,7 @@ class BlockTappedEffect extends AsThoughEffectImpl {
@Override
public boolean applies(UUID sourceId, Ability source, UUID affectedControllerId, Game game) {
Permanent permanent = game.getPermanent(source.getSourceId());
Permanent permanent = game.getPermanent(sourceId);
if (permanent != null && permanent.getControllerId().equals(source.getControllerId())) {
return true;
}