Added missing net.allow_unsafe_api value in autoexec.cfg that prevented some advanced scripts from working

This commit is contained in:
Ambroise Garel
2025-09-18 16:58:21 +02:00
parent 69ea6b6d19
commit da20586d51
3 changed files with 3 additions and 3 deletions
+2 -1
View File
@@ -11,8 +11,9 @@
if not net then net = {} end
net.allow_unsafe_api = { -- this defines the secure zones where net.dostring_in() can be called from
"scripting",
}
net.allow_dostring_in = { -- and this defines the zones that should be addressed from net.dostring_in()
"mission"
"mission",
}