mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 15:32:08 -08:00
Fixed player names in some game logs;
This commit is contained in:
parent
fed97c040a
commit
46e0bb9473
11 changed files with 24 additions and 23 deletions
|
|
@ -30,10 +30,10 @@ public abstract class CouncilsDilemmaVoteEffect extends OneShotEffect {
|
|||
"Choose " + choiceOne + " or " + choiceTwo + "?",
|
||||
source.getRule(), choiceOne, choiceTwo, source, game)) {
|
||||
voteOneCount++;
|
||||
game.informPlayers(player.getName() + " has voted for " + choiceOne);
|
||||
game.informPlayers(player.getLogName() + " has voted for " + choiceOne);
|
||||
} else {
|
||||
voteTwoCount++;
|
||||
game.informPlayers(player.getName() + " has voted for " + choiceTwo);
|
||||
game.informPlayers(player.getLogName() + " has voted for " + choiceTwo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ public class ProliferateEffect extends OneShotEffect {
|
|||
player.addCounters(newCounter, source, game);
|
||||
}
|
||||
if (newCounter != null) {
|
||||
game.informPlayers(player.getName()
|
||||
game.informPlayers(player.getLogName()
|
||||
+ " had 1 "
|
||||
+ newCounter.getName()
|
||||
+ " counter added to them.");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue