X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fbot_DummyServ.c;h=eda45058560370237b8e01a98643c6589f23d59e;hb=bb5692b9cbff069abbf9573c81e86c3cd2061ceb;hp=b6605d5fba486a001d531a76e7f994d210393b0b;hpb=f80fa658483884289cf2585790b1cf64ef722197;p=NeonServV5.git diff --git a/src/bot_DummyServ.c b/src/bot_DummyServ.c index b6605d5..eda4505 100644 --- a/src/bot_DummyServ.c +++ b/src/bot_DummyServ.c @@ -1,5 +1,5 @@ -/* bot_DummyServ.c - NeonServ v5.2 - * Copyright (C) 2011 Philipp Kreil (pk910) +/* bot_DummyServ.c - NeonServ v5.3 + * Copyright (C) 2011-2012 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 @@ -82,7 +82,7 @@ static void start_bots() { connect_socket(client); } - printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access` FROM `bot_binds` WHERE `botclass` = '%d'", BOTID); + printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access`, `flags` FROM `bot_binds` WHERE `botclass` = '%d'", BOTID); res2 = mysql_use(); while ((row = mysql_fetch_row(res2)) != NULL) { if(bind_cmd_to_command(BOTID, row[0], row[1])) { @@ -95,6 +95,8 @@ static void start_bots() { if(row[4]) { bind_set_channel_access(BOTID, row[0], row[4]); } + if(strcmp(row[5], "0")) + bind_set_bind_flags(BOTID, row[0], atoi(row[5])); } } bind_unbound_required_functions(BOTID);