diff --git a/Source/sync.cpp b/Source/sync.cpp index e22815f4b..55f232652 100644 --- a/Source/sync.cpp +++ b/Source/sync.cpp @@ -254,6 +254,9 @@ uint32_t sync_all_monsters(byte *pbBuf, uint32_t dwMaxLen) if (dwMaxLen < sizeof(TSyncHeader) + sizeof(TSyncMonster)) { return dwMaxLen; } + if (MyPlayer->_pLvlChanging) { + return dwMaxLen; + } auto *pHdr = (TSyncHeader *)pbBuf; pbBuf += sizeof(TSyncHeader);