Commit c039a3aa authored by Matt Lowe's avatar Matt Lowe
Browse files

Added Mull to the whitelist

Mullling through 2 hands will give a flood warning, a user thought this
should not happen. It is very similar to drawing cards, which is in the
white list.
parent 580927a5
...@@ -194,7 +194,9 @@ Response::ResponseCode Server_ProtocolHandler::processGameCommandContainer(const ...@@ -194,7 +194,9 @@ Response::ResponseCode Server_ProtocolHandler::processGameCommandContainer(const
// set card attributes (eg: tapping 10 cards at once) // set card attributes (eg: tapping 10 cards at once)
<< GameCommand::SET_CARD_ATTR << GameCommand::SET_CARD_ATTR
// increment / decrement counter (eg: -10 lifepoints one by one) // increment / decrement counter (eg: -10 lifepoints one by one)
<< GameCommand::INC_COUNTER; << GameCommand::INC_COUNTER
// mulling lots of hands in a row
<< GameCommand::MULLIGAN;
if (authState == NotLoggedIn) if (authState == NotLoggedIn)
return Response::RespLoginNeeded; return Response::RespLoginNeeded;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment