*** VERSION 5.2.0 ***
[NeonServV5.git] / src / cmd_neonserv_setrank.c
index 7c866612c03c84d53298e2fbb08d1bb8d8be9f47..05fd7d1834ca20d716485a7d13f9a8d57935d6df 100644 (file)
@@ -1,3 +1,19 @@
+/* cmd_neonserv_setrank.c - NeonServ v5.2
+ * Copyright (C) 2011  Philipp Kreil (pk910)
+ * 
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License 
+ * along with this program. If not, see <http://www.gnu.org/licenses/>. 
+ */
 
 #include "cmd_neonserv.h"
 
@@ -76,6 +92,7 @@ static void neonserv_cmd_setrank_access(struct UserNode *user, int rank_id, char
             reply(getTextBot(), user, "NS_INVALID_ACCESS", new_access);
             return;
         }
+        printf_mysql_query("UPDATE `users` SET `user_access` = '%d' WHERE `user_rank` = '%d'", new_access, rank_id);
         printf_mysql_query("UPDATE `support_ranks` SET `rank_access` = '%d' WHERE `rank_id` = '%d'", new_access, rank_id);
         current = value;
     }