X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fcmd_neonserv_setrank.c;h=05fd7d1834ca20d716485a7d13f9a8d57935d6df;hb=c575e458c6257e75b97884847143b20965a5dfda;hp=7c866612c03c84d53298e2fbb08d1bb8d8be9f47;hpb=29eabaf1a49a1accda939fbdef6dad9bd3356b94;p=NeonServV5.git diff --git a/src/cmd_neonserv_setrank.c b/src/cmd_neonserv_setrank.c index 7c86661..05fd7d1 100644 --- a/src/cmd_neonserv_setrank.c +++ b/src/cmd_neonserv_setrank.c @@ -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 . + */ #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; }