2022-08-12 05:47:27 -04:00

13 lines
360 B
Lua

-- LUALOCALS < ---------------------------------------------------------
local nodecore
= nodecore
-- LUALOCALS > ---------------------------------------------------------
nodecore.register_playerstep({
label = "disallow basic debug",
action = function(_, data)
data.hud_flags = data.hud_flags or {}
data.hud_flags.basic_debug = false
end
})