13 lines
360 B
Lua
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
|
|
})
|