mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Masako the Humorless - Fixed that the thought as ability also worked unintended for creatures of opponents.
This commit is contained in:
parent
f25d6930e0
commit
a8d61169ad
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue