master
Henrique 13 years ago
parent 9ca98dd00e
commit 80e4bb59d2

@ -67,7 +67,7 @@ private:
void parseFYIMessage(InputMessage& msg);
void parseWaitList(InputMessage& msg);
void parsePing(InputMessage&);
void parseDeath(InputMessage&);
void parseDeath(InputMessage& msg);
void parseCanReportBugs(InputMessage& msg);
void parseMapDescription(InputMessage& msg);
void parseMoveNorth(InputMessage& msg);

@ -295,9 +295,9 @@ void ProtocolGame::parsePing(InputMessage&)
sendPing();
}
void ProtocolGame::parseDeath(InputMessage&)
void ProtocolGame::parseDeath(InputMessage& msg)
{
msg.getU8(); // 100 is a fair death. < 100 is a unfair death.
}
void ProtocolGame::parseMapDescription(InputMessage& msg)

Loading…
Cancel
Save