summaryrefslogtreecommitdiff
path: root/npc/commands/super-menu.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/commands/super-menu.txt')
-rw-r--r--npc/commands/super-menu.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/commands/super-menu.txt b/npc/commands/super-menu.txt
index 875111e38..98de5968d 100644
--- a/npc/commands/super-menu.txt
+++ b/npc/commands/super-menu.txt
@@ -1,7 +1,7 @@
function script SuperMenu {
do
{
- if (debug && !is_dev())
+ if (debug && !is_gm())
{
GlobalDebugMenu;
return;
@@ -15,8 +15,8 @@ function script SuperMenu {
next;
select
l("Scheduled broadcasts"),
- l("MOTD"),
- rif(is_evtc(), l("Event management")),
+ rif(is_admin(), l("MOTD")),
+ rif(is_gm(), l("Event management")),
l("Debug");
switch (@menu)
@@ -36,7 +36,7 @@ function script SuperMenu {
OnCall:
- if (!debug && !is_dev())
+ if (!debug && !is_gm())
{
dispbottom l("You do not have the required access privileges to use the Super Menu.");
end;
@@ -62,5 +62,5 @@ OnPCLoginEvent:
OnInit:
bindatcmd "super", "@super::OnCall", 80, 99, 0;
- bindatcmd "numa", "@super::OnCall", 80, 99, 0; // alias for those used to TMW's @numa
+ //bindatcmd "numa", "@super::OnCall", 80, 99, 0; // alias for those used to TMW's @numa - none at the moment, iirc
}