* Fixed that if in a multiplayer game the player that selects the starting player concedes before he selects a starting player, a starting player is slected by the game. The game starts now correctly with all remaining players.

This commit is contained in:
LevelX2 2015-09-15 12:41:07 +02:00
parent e36a2819f5
commit afc6a5aadc
2 changed files with 51 additions and 17 deletions

View file

@ -108,12 +108,12 @@ public class LookLibraryControllerEffect extends OneShotEffect {
if (source instanceof SpellAbility) {
Card sourceCard = game.getCard(source.getSourceId());
if (sourceCard != null) {
windowName = sourceCard.getName();
windowName = sourceCard.getIdName();
}
} else {
Permanent sourcePermanent = game.getPermanent(source.getSourceId());
if (sourcePermanent != null) {
windowName = sourcePermanent.getName();
windowName = sourcePermanent.getIdName();
}
}