Fix dungeon spawn retries being 1 smaller than normal

This commit is contained in:
DBotThePony 2024-12-02 12:32:33 +07:00
parent 45e95f7f71
commit 3efedd7d22
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -756,7 +756,7 @@ class ServerWorld private constructor(
currentDungeonID++ currentDungeonID++
break break
} }
} while (--spawnDungeonRetries > 0) } while (spawnDungeonRetries-- > 0)
} }
} }