1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

Fix inability to save game

This commit is contained in:
Ivan Savenko
2025-05-19 21:01:52 +03:00
parent 131b59e6cd
commit cc5f47a085

View File

@@ -25,6 +25,9 @@ TimerPauseQuery::TimerPauseQuery(CGameHandler * owner, PlayerColor player):
bool TimerPauseQuery::blocksPack(const CPackForServer *pack) const
{
if(dynamic_cast<const SaveGame*>(pack) != nullptr)
return false;
return blockAllButReply(pack);
}