From bb5431ba4d88018275d459b16dfdc129ab133b45 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Thu, 7 Jan 2016 13:39:54 +0100 Subject: Fix skip-commands so moderators can skip indexed wishes --- src/crsm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crsm.cpp b/src/crsm.cpp index e2b8a4e..2d4d32b 100644 --- a/src/crsm.cpp +++ b/src/crsm.cpp @@ -2283,7 +2283,7 @@ CMD_FUNCTION_IMPL(skip) } } } - else if(userlist.at(pos).wishClient != client) + else if(userlist.at(pos).wishClient != client && userType < Moderator) { pos = -2; } -- cgit v1.2.3-54-g00ecf