Revert CompileString change

This commit is contained in:
Redox 2023-09-26 19:44:09 +02:00
parent 91ef015134
commit 2ae3ca0ace
No known key found for this signature in database
GPG Key ID: C10A433A95068388

View File

@ -57,7 +57,7 @@ local function compile_expression(str, extra_lib)
functions.select = select
str = "local IN = select(1, ...) return " .. str
local func = CompileString(str, "pac_expression", true)
local func = CompileString(str, "pac_expression", false)
if isstring(func) then
return false, func