mirror of
https://github.com/MikaylaFischler/cc-mek-scada.git
synced 2024-08-30 18:22:34 +00:00
adjusted TCD unserviced call delay
This commit is contained in:
parent
b2be3ef5fc
commit
57bac57e3f
@ -16,7 +16,7 @@ local config = require("coordinator.config")
|
||||
local coordinator = require("coordinator.coordinator")
|
||||
local renderer = require("coordinator.renderer")
|
||||
|
||||
local COORDINATOR_VERSION = "alpha-v0.5.10"
|
||||
local COORDINATOR_VERSION = "alpha-v0.5.11"
|
||||
|
||||
local print = util.print
|
||||
local println = util.println
|
||||
|
@ -9,7 +9,10 @@ local tcallbackdsp = {}
|
||||
|
||||
local registry = {}
|
||||
|
||||
local UNSERVICED_CALL_DELAY = util.TICK_TIME_S
|
||||
---@todo possibly move this to a config file?
|
||||
-- maximum 5 ticks late (0.25 seconds)<br/>
|
||||
-- heavily modded servers and large multiplayer servers tend to significantly slow tick times, so nominal 0.05s ticks are unlikely
|
||||
local UNSERVICED_CALL_DELAY = util.TICK_TIME_S * 5
|
||||
|
||||
-- request a function to be called after the specified time
|
||||
---@param time number seconds
|
||||
|
Loading…
Reference in New Issue
Block a user