death fix
This commit is contained in:
parent
9ca98dd00e
commit
80e4bb59d2
|
@ -67,7 +67,7 @@ private:
|
||||||
void parseFYIMessage(InputMessage& msg);
|
void parseFYIMessage(InputMessage& msg);
|
||||||
void parseWaitList(InputMessage& msg);
|
void parseWaitList(InputMessage& msg);
|
||||||
void parsePing(InputMessage&);
|
void parsePing(InputMessage&);
|
||||||
void parseDeath(InputMessage&);
|
void parseDeath(InputMessage& msg);
|
||||||
void parseCanReportBugs(InputMessage& msg);
|
void parseCanReportBugs(InputMessage& msg);
|
||||||
void parseMapDescription(InputMessage& msg);
|
void parseMapDescription(InputMessage& msg);
|
||||||
void parseMoveNorth(InputMessage& msg);
|
void parseMoveNorth(InputMessage& msg);
|
||||||
|
|
|
@ -295,9 +295,9 @@ void ProtocolGame::parsePing(InputMessage&)
|
||||||
sendPing();
|
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)
|
void ProtocolGame::parseMapDescription(InputMessage& msg)
|
||||||
|
|
Loading…
Reference in New Issue