6 lines
148 B
Lua
6 lines
148 B
Lua
function print_debug(content)
|
|
local conf = state_get("config")
|
|
if conf.debug then
|
|
print("CADVANCED CLIENT: " .. content)
|
|
end
|
|
end |