removed getTextBot() function and added textbot parameter to the CMD_BIND header...
[NeonServV5.git] / src / modules / global.mod / cmd_global_unbind.c
index f37efd780b6071f55406d4c1f54774af797b34a8..bdec79f64a6498bc91f5be6199e3b0735d3d6fa8 100644 (file)
@@ -31,7 +31,7 @@ CMD_BIND(global_cmd_unbind) {
         printf_mysql_query("SELECT `id`, `function` FROM `bot_binds` WHERE `botclass` = '%d' AND `command` = '%s'", client->botid, escape_string(argv[0]));
     res = mysql_use();
     if ((row = mysql_fetch_row(res)) == NULL && (!cbind || !(cbind->flags & CMDFLAG_TEMPONARY_BIND))) {
-        reply(getTextBot(), user, "NS_UNBIND_NOT_FOUND", argv[0]);
+        reply(textclient, user, "NS_UNBIND_NOT_FOUND", argv[0]);
         return;
     }
     struct cmd_function *function = find_cmd_function(client->botid, cbind->func->name);
@@ -42,13 +42,13 @@ CMD_BIND(global_cmd_unbind) {
             printf_mysql_query("SELECT `id` FROM `bot_binds` WHERE `botclass` = '%d' AND `function` = '%s'", client->botid, escape_string(function->name));
         res = mysql_use();
         if (mysql_num_rows(res) <= 1) {
-            reply(getTextBot(), user, "NS_UNBIND_REQUIRED", function->name);
+            reply(textclient, user, "NS_UNBIND_REQUIRED", function->name);
             return;
         }
     }
     unbind_botwise_cmd(client->botid, client->clientid, argv[0]);
     if(!cbind || !(cbind->flags & CMDFLAG_TEMPONARY_BIND))
         printf_mysql_query("DELETE FROM `bot_binds` WHERE `id` = '%s'", row[0]);
-    reply(getTextBot(), user, "NS_UNBIND_DONE", argv[0]);
+    reply(textclient, user, "NS_UNBIND_DONE", argv[0]);
     logEvent(event);
 }