mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -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) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Permanent permanent = game.getPermanent(source.getSourceId());
|
Permanent permanent = game.getPermanent(source.getSourceId());
|
||||||
if (permanent == null) {
|
if (permanent == null) {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
Permanent creature = game.getPermanent(permanent.getAttachedTo());
|
Permanent creature = game.getPermanent(permanent.getAttachedTo());
|
||||||
if (creature == null) {
|
if (creature == null) {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
creature.removeAllAbilities(source.getSourceId(), game);
|
creature.removeAllAbilities(source.getSourceId(), game);
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue