m_pokerTable.setNoSeatBigBlind(command.GetNoSeatBB());
// TODO: RICK: This is nice but, si le player passe pas par tcp (direct, hooking, etc) il saura pas quoi faire lors des blinds.
if (m_pokerTable.getNoSeatSmallBlind() == m_tablePosition)
{
send(new PlayerPlayMoneyCommand(m_pokerTable.getSmallBlindAmnt()));
}
if (m_pokerTable.getNoSeatBigBlind() == m_tablePosition)
{
send(new PlayerPlayMoneyCommand(m_pokerTable.getBigBlindAmnt()));
}
m_gameObserver.gameBlindsNeeded();
}
@Override