remove bot entries from `bot_binds` and `bot_channels` when got gets removed by cmd_d...
[NeonServV5.git] / src / cmd_global_delbot.c
index 1a37dd4570536f5bfef414665d7868582bdfa3d7..a04e92b83fb3aed508745eafda9983fed0fc490f 100644 (file)
@@ -32,6 +32,8 @@ CMD_BIND(global_cmd_delbot) {
     }
     int botid = atoi(row[0]);
     printf_mysql_query("DELETE FROM `bots` WHERE `id` = '%s'", row[0]);
+    printf_mysql_query("DELETE FROM `bot_binds` WHERE `botid` = '%s'", row[0]);
+    printf_mysql_query("DELETE FROM `bot_channels` WHERE `botid` = '%s'", row[0]);
     for(client = getBots(0, NULL); client; client = getBots(0, client)) {
         if(client->clientid == botid) {
             close_socket(client);