Turned 'menu' command into 'dashboard'

This commit is contained in:
Nathan Schneider
2021-04-11 22:24:47 -06:00
parent 8feae2d57e
commit 74ecba940a
3 changed files with 14 additions and 9 deletions

View File

@ -15,13 +15,13 @@ regchat = function(name, command_table)
end
-- ===================================================================
-- /menu
-- /dashboard
-- Presents a menu of options to users
regchat(
"menu", {
"dashboard", {
privs = {},
func = function(user)
local result = modpol.menu(user)
local result = modpol.dashboard(user)
return true, result
end,
})