minor refactor

This commit is contained in:
MihailRis
2025-08-01 22:00:29 +03:00
parent 2c60e7c6ae
commit 9e8acac783
4 changed files with 8 additions and 7 deletions
+3 -3
View File
@@ -510,8 +510,8 @@ function __vc_on_world_open()
end
end
function __vc_on_world_tick()
time.schedules.world:tick(1.0 / 20.0)
function __vc_on_world_tick(tps)
time.schedules.world:tick(1.0 / tps)
end
function __vc_on_world_save()
@@ -683,4 +683,4 @@ function dofile(path)
end
end
return _dofile(path)
end
end