@Override
public void gameBettingRoundStarted()
{
final TableInfo table = m_game.getTable();
final GameRoundType r = table.getRound();
writeLine("==> Beginning of " + r.name());
if (r != GameRoundType.PREFLOP)
{
write("==> Current board cards:");
for (int i = 0; i < 5 && table.getCards().get(i).getId() != Card.NO_CARD_ID; ++i)
{