use const where appropriate

This commit is contained in:
Redo
2022-11-09 13:22:06 -06:00
parent 75299209b8
commit 2389252698
7 changed files with 2544 additions and 47 deletions

View File

@@ -117,7 +117,7 @@ function network_update()
if value < 0 or value > 999999 then
value = 0
end
if value<=0.001 then value = 0.0001 end
if value<=0.001 then value = 0.001 end
OPT_TICK_TIME = value
elseif option == "FX_UPDATES" then
OPT_FX_UPDATES = toboolean(value)