refactor(server/cron): reduce wait to reschedule task

Was a hacky solution to an obsolete issue.
This commit is contained in:
Linden
2023-08-06 17:27:41 +10:00
parent becc29bcea
commit d12f4845f2

View File

@@ -245,7 +245,7 @@ function OxTask:scheduleTask()
print(('(%s/%s/%s %s:%s) ran task %s'):format(currentDate.year, currentDate.month, currentDate.day, currentDate.hour, currentDate.min, self.id))
end
Wait(30000)
Wait(1000)
return true
end