From c039a3aa42eff2f133395a6cc15c68d229e66770 Mon Sep 17 00:00:00 2001 From: Matt Lowe Date: Wed, 1 Apr 2015 22:08:46 +0200 Subject: [PATCH] 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. --- common/server_protocolhandler.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/server_protocolhandler.cpp b/common/server_protocolhandler.cpp index 2515fad6..834d77b5 100644 --- a/common/server_protocolhandler.cpp +++ b/common/server_protocolhandler.cpp @@ -194,7 +194,9 @@ Response::ResponseCode Server_ProtocolHandler::processGameCommandContainer(const // set card attributes (eg: tapping 10 cards at once) << GameCommand::SET_CARD_ATTR // 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) return Response::RespLoginNeeded;