mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 19:45:22 +09:00
7 lines
307 B
Lua
7 lines
307 B
Lua
local DebugView = require 'modules.gui.debug.main_view' --- @dep modules.gui.debug.main_view
|
|
local Commands = require 'expcore.commands' --- @dep expcore.commands
|
|
|
|
Commands.new_command('debug','Opens the debug pannel for viewing tables.')
|
|
:register(function(player,raw)
|
|
DebugView.open_dubug(player)
|
|
end) |