X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fbots.c;fp=src%2Fbots.c;h=d239dffaeced9ff4bc0dd4489825fe8b8b469829;hb=5a9d04e79a4d27880eb5a588cbc50e00a4cd26aa;hp=9cc84d259f430fd881fde5f126220ccd2bbf45be;hpb=be17e22b842b7b831694422b204777c93fd478bb;p=NeonServV5.git diff --git a/src/bots.c b/src/bots.c index 9cc84d2..d239dff 100644 --- a/src/bots.c +++ b/src/bots.c @@ -56,7 +56,7 @@ static void start_zero_bots() { client->clientid = atoi(row[7]); connect_socket(client); - printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access` FROM `bot_binds` WHERE `botclass` = '0' AND `botid` = '%d'", client->clientid); + printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access`, `flags` FROM `bot_binds` WHERE `botclass` = '0' AND `botid` = '%d'", client->clientid); res2 = mysql_use(); while ((row = mysql_fetch_row(res2)) != NULL) { if(bind_botwise_cmd_to_command(0, client->clientid, row[0], row[1])) { @@ -69,6 +69,8 @@ static void start_zero_bots() { if(row[4]) { bind_botwise_set_channel_access(0, client->clientid, row[0], row[4]); } + if(strcmp(row[5], "0")) + bind_botwise_set_bind_flags(0, client->clientid, row[0], atoi(row[5])); } } bind_botwise_unbound_required_functions(0, client->clientid);