replaced "you" with player name

master
beholder 2012-06-11 10:28:38 +02:00
parent e903c10d3b
commit f52677ad8c
1 changed files with 4 additions and 1 deletions

View File

@ -30,7 +30,10 @@ public class MagicMillLibraryAction extends MagicAction {
game.doAction(new MagicRemoveCardAction(milledCard,MagicLocationType.OwnersLibrary));
game.doAction(new MagicMoveCardAction(milledCard,MagicLocationType.OwnersLibrary,MagicLocationType.Graveyard));
}
game.logMessage(player,"You put the top "+count+" cards of your library into your graveyard.");
game.logMessage(
player,
player + " puts the top " + count +
" cards of his or her library into his or her graveyard.");
}
}