mirror of
https://github.com/Refactorio/RedMew.git
synced 2025-03-05 15:05:57 +02:00
14 lines
288 B
Lua
14 lines
288 B
Lua
local DebugView = require 'features.gui.debug.main_view'
|
|
local Command = require 'utils.command'
|
|
|
|
Command.add(
|
|
'debug',
|
|
{
|
|
description = {'command_descriptiondebuger'},
|
|
debug_only = true
|
|
},
|
|
function(_, player)
|
|
DebugView.open_dubug(player)
|
|
end
|
|
)
|