- Fixed AF GainControl not setting the right controller for spells.

This commit is contained in:
Sloth
2012-06-08 11:20:36 +00:00
parent 54f2a6f1a1
commit e4f3af21e9

View File

@@ -411,7 +411,11 @@ public class AbilityFactoryGainControl {
GameEntity newController;
if (controllers.size() == 0) {
newController = this.hostCard;
if (sa.isSpell()) {
newController = sa.getActivatingPlayer();
} else {
newController = this.hostCard;
}
} else {
newController = controllers.get(0);
}