removed getTextBot() function and added textbot parameter to the CMD_BIND header...
[NeonServV5.git] / src / modules / global.mod / cmd_global_bind.c
index 848016b215f84afa830efb2bfcf6a6a68de0762f..6f76257df82b78fa00ed1ff3d50a5639facc6ec3 100644 (file)
@@ -32,7 +32,7 @@ CMD_BIND(global_cmd_bind) {
         printf_mysql_query("SELECT `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) {
-        reply(getTextBot(), user, "NS_BIND_ALREADY", argv[0], row[0]);
+        reply(textclient, user, "NS_BIND_ALREADY", argv[0], row[0]);
         return;
     }
     char *params;
@@ -42,13 +42,13 @@ CMD_BIND(global_cmd_bind) {
         params = "";
     struct cmd_function *function = find_cmd_function(client->botid, argv[1]);
     if(!function) {
-        reply(getTextBot(), user, "NS_BIND_UNKNOWN", argv[1]);
+        reply(textclient, user, "NS_BIND_UNKNOWN", argv[1]);
         return;
     }
     bind_botwise_cmd_to_function(client->botid, client->clientid, argv[0], function);
     printf_mysql_query("INSERT INTO `bot_binds` (`botclass`, `botid`, `command`, `function`, `parameters`) VALUES ('%d', '%d', '%s', '%s', '%s')", client->botid, (client->botid == 0 ? client->clientid : 0), escape_string(argv[0]), escape_string(argv[1]), params);
     if(*params)
         bind_botwise_set_parameters(client->botid, client->clientid, argv[0], params);
-    reply(getTextBot(), user, "NS_BIND_DONE", argv[0], function->name);
+    reply(textclient, user, "NS_BIND_DONE", argv[0], function->name);
     logEvent(event);
 }