mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Comment cleanup.
This commit is contained in:
parent
d6e6279300
commit
73abbd2e87
1 changed files with 2 additions and 2 deletions
|
@ -76,12 +76,12 @@ public class LoseLifeControllerEffect extends OneShotEffect<LoseLifeControllerEf
|
|||
if ( targetCard != null ) {
|
||||
Player controller = null;
|
||||
|
||||
//Handles interaction with that were on the battlefield permanents.
|
||||
//Handles interaction with permanents that were on the battlefield.
|
||||
if ( targetCard instanceof Permanent ) {
|
||||
Permanent targetPermanent = (Permanent)targetCard;
|
||||
controller = game.getPlayer(targetPermanent.getControllerId());
|
||||
}
|
||||
//Handles interactign with spells that were on the stack.
|
||||
//Handles interaction with spells that were on the stack.
|
||||
else if ( targetCard instanceof Spell ) {
|
||||
Spell targetSpell = (Spell)targetCard;
|
||||
controller = game.getPlayer(targetSpell.getControllerId());
|
||||
|
|
Loading…
Reference in a new issue