mirror of
https://github.com/correl/mage.git
synced 2025-04-06 17:00:12 -09: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 ) {
|
if ( targetCard != null ) {
|
||||||
Player controller = 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 ) {
|
if ( targetCard instanceof Permanent ) {
|
||||||
Permanent targetPermanent = (Permanent)targetCard;
|
Permanent targetPermanent = (Permanent)targetCard;
|
||||||
controller = game.getPlayer(targetPermanent.getControllerId());
|
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 ) {
|
else if ( targetCard instanceof Spell ) {
|
||||||
Spell targetSpell = (Spell)targetCard;
|
Spell targetSpell = (Spell)targetCard;
|
||||||
controller = game.getPlayer(targetSpell.getControllerId());
|
controller = game.getPlayer(targetSpell.getControllerId());
|
||||||
|
|
Loading…
Add table
Reference in a new issue