mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
typo fix
This commit is contained in:
parent
1f7af53dbb
commit
ad26810281
1 changed files with 2 additions and 2 deletions
|
|
@ -73,11 +73,11 @@ class MysticSubdualEffect extends ContinuousEffectImpl {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||
if (permanent == null) {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
Permanent creature = game.getPermanent(permanent.getAttachedTo());
|
||||
if (creature == null) {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
creature.removeAllAbilities(source.getSourceId(), game);
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue