X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fmodules%2Fglobal.mod%2Fcmd_global_unbind.c;fp=src%2Fmodules%2Fglobal.mod%2Fcmd_global_unbind.c;h=bdec79f64a6498bc91f5be6199e3b0735d3d6fa8;hb=de5f0224c8b119f1be15457262bd6e66f160657f;hp=f37efd780b6071f55406d4c1f54774af797b34a8;hpb=9f5af1bc8ff4e8fc9c28433c76a890a990dd0ae5;p=NeonServV5.git diff --git a/src/modules/global.mod/cmd_global_unbind.c b/src/modules/global.mod/cmd_global_unbind.c index f37efd7..bdec79f 100644 --- a/src/modules/global.mod/cmd_global_unbind.c +++ b/src/modules/global.mod/cmd_global_unbind.c @@ -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); }