1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-06 17:00:12 -09:00

Comment cleanup.

This commit is contained in:
maurer.it 2011-10-17 21:17:22 -04:00
parent d6e6279300
commit 73abbd2e87

View file

@ -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());