Merge branch 'OPT_TICK_MULT_Def_Fix' into 'master'

Fix $Pref::Server::LuaLogic::OPT_TICK_MULT not being set to 1 by default.

See merge request Eagle517/Brick_LuaLogic!1
This commit is contained in:
Eagle517 2020-05-25 13:47:25 +00:00
commit 407a3de379

View File

@ -1,5 +1,6 @@
if($Pref::Server::LuaLogic::OPT_TICK_ENABLED $= "") $Pref::Server::LuaLogic::OPT_TICK_ENABLED = true;
if($Pref::Server::LuaLogic::OPT_TICK_MULT $= "") $Pref::Server::LuaLogic::OPT_TICK_MULT = 1;
if($Pref::Server::LuaLogic::OPT_TICK_TIME $= "") $Pref::Server::LuaLogic::OPT_TICK_TIME = 0;
if($Pref::Server::LuaLogic::OPT_FX_UPDATES $= "") $Pref::Server::LuaLogic::OPT_FX_UPDATES = true;
if($Pref::Server::LuaLogic::OPT_FX_TIME $= "") $Pref::Server::LuaLogic::OPT_FX_TIME = 0.03;