Console client: Adding support for password protected games. Fixed issue with custom blinds. Cosmetic changes.

This commit is contained in:
lotodore
2008-12-28 01:37:59 +00:00
parent e4ead9e706
commit 128c917a5b
8 changed files with 45 additions and 15 deletions
+2 -2
View File
@@ -82,7 +82,7 @@ namespace pokerth_console
public void ActionDone(string name, Hand.Action action, uint curBet, uint money, List<string> nonFoldPlayers)
{
Console.WriteLine("{0} {1}. Cash: {2}.", name, Log.ActionToString(action, curBet), money);
Console.WriteLine("{0} {1}. Cash: ${2}.", name, Log.ActionToString(action, curBet), money);
if (action == Hand.Action.Fold)
{
string outPlayers = "";
@@ -103,7 +103,7 @@ namespace pokerth_console
public void ShowPot(uint pot)
{
Console.WriteLine("\nPot is now {0}.", pot);
Console.WriteLine("\nPot is now ${0}.", pot);
}
public void ShowFlopCards(int[] cards)