1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-20 03:29:26 +02:00
RedMew/features/gui/debug/command.lua

14 lines
288 B
Lua
Raw Normal View History

2019-01-30 22:32:43 +00:00
local DebugView = require 'features.gui.debug.main_view'
local Command = require 'utils.command'
Command.add(
'debug',
{
description = {'command_descriptiondebuger'},
debug_only = true
2019-01-30 22:32:43 +00:00
},
function(_, player)
DebugView.open_dubug(player)
end
)