Version 2.3.4

Tickle, json persistence bug for cyclic structures
This commit is contained in:
Christian Franz
2024-10-10 08:30:18 +02:00
parent a2e8ead577
commit a70fadc550
10 changed files with 501 additions and 56 deletions

View File

@@ -27,6 +27,7 @@ function sweeper.readSweeperZone(theZone)
end
function sweeper.update()
net.log("sweeper: begin update")
timer.scheduleFunction(sweeper.update, {}, timer.getTime() + sweeper.interval)
local toKill = {}
local newFlights = {}
@@ -105,6 +106,8 @@ function sweeper.update()
-- remember new list, forget old
sweeper.flights = newFlights
net.log("sweeper: end update")
end
function sweeper.readConfig()