mirror of
https://github.com/vcmi/vcmi.git
synced 2025-06-23 00:28:08 +02:00
unlimited replay option
This commit is contained in:
@ -507,11 +507,11 @@ void CServerHandler::setTurnTimerInfo(const TurnTimerInfo & info) const
|
||||
sendLobbyPack(lstt);
|
||||
}
|
||||
|
||||
void CServerHandler::setCheatAllowedInfo(bool allowed) const
|
||||
void CServerHandler::setExtraOptionsInfo(const ExtraOptionsInfo & info) const
|
||||
{
|
||||
LobbySetCheatAllowed lsca;
|
||||
lsca.allowed = allowed;
|
||||
sendLobbyPack(lsca);
|
||||
LobbySetExtraOptions lseo;
|
||||
lseo.extraOptionsInfo = info;
|
||||
sendLobbyPack(lseo);
|
||||
}
|
||||
|
||||
void CServerHandler::sendMessage(const std::string & txt) const
|
||||
|
Reference in New Issue
Block a user