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 -1
View File
@@ -57,7 +57,8 @@ namespace pokerth_lib
(GameInfo.Mode)Convert.ToInt32(p.Properties[NetPacket.PropType.GameMode]),
p.ListProperties[NetPacket.ListPropType.PlayerSlots].
ConvertAll<uint>(Convert.ToUInt32),
Convert.ToUInt32(p.Properties[NetPacket.PropType.StartMoney])));
Convert.ToUInt32(p.Properties[NetPacket.PropType.StartMoney]),
Convert.ToUInt16(p.Properties[NetPacket.PropType.GamePrivacyFlags]) == 1));
}
public void VisitGameListUpdate(NetPacket p)