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_tele.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/scripts/Commands/cs_tele.cpp') diff --git a/src/scripts/Commands/cs_tele.cpp b/src/scripts/Commands/cs_tele.cpp index 0dd3d9ab3a..95a1ed5f5e 100644 --- a/src/scripts/Commands/cs_tele.cpp +++ b/src/scripts/Commands/cs_tele.cpp @@ -28,15 +28,15 @@ public: { static std::vector teleCommandTable = { - { "add", SEC_ADMINISTRATOR, false, &HandleTeleAddCommand, "" }, - { "del", SEC_ADMINISTRATOR, true, &HandleTeleDelCommand, "" }, + { "add", SEC_ADMINISTRATOR, false, &HandleTeleAddCommand, "" }, + { "del", SEC_ADMINISTRATOR, true, &HandleTeleDelCommand, "" }, { "name", SEC_GAMEMASTER, true, &HandleTeleNameCommand, "" }, { "group", SEC_GAMEMASTER, false, &HandleTeleGroupCommand, "" }, - { "", SEC_GAMEMASTER, false, &HandleTeleCommand, "" } + { "", SEC_MODERATOR, false, &HandleTeleCommand, "" } }; static std::vector commandTable = { - { "tele", SEC_GAMEMASTER, false, nullptr, "", teleCommandTable } + { "tele", SEC_MODERATOR, false, nullptr, "", teleCommandTable } }; return commandTable; } -- cgit v1.2.3