[minor] toss a coin text extended.

This commit is contained in:
LevelX2 2013-05-02 16:06:42 +02:00
parent eb7fdcc8fb
commit d32600dbb1

View file

@ -1255,7 +1255,7 @@ public abstract class PlayerImpl<T extends PlayerImpl<T>> implements Player, Ser
@Override
public boolean flipCoin(Game game) {
boolean result = rnd.nextBoolean();
game.informPlayers("[Flip a coin] " + getName() + (result ? " won." : " lost."));
game.informPlayers("[Flip a coin] " + getName() + (result ? " won (head)." : " lost (tail)."));
return result;
}