X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fmodules%2Fglobal.mod%2Fcmd_global_unbind.c;h=beeb97c53dc4355c4c8b2497f5e6cd731208f841;hb=78e040af3fcc36ab684611c0f98b4381ff420878;hp=f37efd780b6071f55406d4c1f54774af797b34a8;hpb=689da1db7e2517c187ce76c6c553e20d630a7f36;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..beeb97c 100644 --- a/src/modules/global.mod/cmd_global_unbind.c +++ b/src/modules/global.mod/cmd_global_unbind.c @@ -1,4 +1,4 @@ -/* cmd_global_unbind.c - NeonServ v5.4 +/* cmd_global_unbind.c - NeonServ v5.5 * Copyright (C) 2011-2012 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify @@ -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); }