From d641365b3b8e3aac2c918c3a2bc10acfbd960813 Mon Sep 17 00:00:00 2001 From: ShinDarth Date: Sun, 21 Aug 2016 20:50:02 +0200 Subject: Script/Commands: fix all command permissions --- src/scripts/Commands/cs_gm.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/scripts/Commands/cs_gm.cpp') diff --git a/src/scripts/Commands/cs_gm.cpp b/src/scripts/Commands/cs_gm.cpp index 06b2033d52..466ff6b567 100644 --- a/src/scripts/Commands/cs_gm.cpp +++ b/src/scripts/Commands/cs_gm.cpp @@ -30,15 +30,15 @@ public: static std::vector gmCommandTable = { { "chat", SEC_GAMEMASTER, false, &HandleGMChatCommand, "" }, - { "fly", SEC_ADMINISTRATOR, false, &HandleGMFlyCommand, "" }, - //{ "ingame", SEC_PLAYER, true, &HandleGMListIngameCommand, "" }, - { "list", SEC_ADMINISTRATOR, true, &HandleGMListFullCommand, "" }, + { "fly", SEC_GAMEMASTER, false, &HandleGMFlyCommand, "" }, + //{ "ingame", SEC_PLAYER, true, &HandleGMListIngameCommand, "" }, + { "list", SEC_GAMEMASTER, true, &HandleGMListFullCommand, "" }, { "visible", SEC_GAMEMASTER, false, &HandleGMVisibleCommand, "" }, { "", SEC_GAMEMASTER, false, &HandleGMCommand, "" } }; static std::vector commandTable = { - { "gm", SEC_GAMEMASTER, false, nullptr, "", gmCommandTable } + { "gm", SEC_MODERATOR, false, nullptr, "", gmCommandTable } }; return commandTable; } -- cgit v1.2.3