From a8d61169adef0fadeecac84e42f8bffa13b59ffa Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 15 Oct 2014 11:38:35 +0200 Subject: [PATCH] * Masako the Humorless - Fixed that the thought as ability also worked unintended for creatures of opponents. --- .../src/mage/sets/championsofkamigawa/MasakoTheHumorless.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/MasakoTheHumorless.java b/Mage.Sets/src/mage/sets/championsofkamigawa/MasakoTheHumorless.java index f40d242140f..ce450653de3 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/MasakoTheHumorless.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/MasakoTheHumorless.java @@ -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; }