1
0
mirror of https://github.com/veden/Rampant.git synced 2025-03-17 20:58:35 +02:00

increased chunk processing delay to 120

This commit is contained in:
Aaron Veden 2021-11-25 09:11:24 -08:00
parent 3a2d4fa29e
commit 2e10f27956
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84

View File

@ -159,7 +159,7 @@ local function onChunkGenerated(event)
-- queue generated chunk for delayed processing, queuing is required because
-- some mods (RSO) mess with chunk as they are generated, which messes up the
-- scoring.
event.tick = (event.tick or game.tick) + 110
event.tick = (event.tick or game.tick) + 120
universe.maps[event.surface.index].pendingChunks[event] = true
end