X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fmodules%2Fglobal.mod%2Fcmd_global_bind.c;h=4ee47a24cbdebeb0443df0d372f7e51eeee20609;hb=fc61be208ca6dbf2fd915591c8dc7e5ef5779891;hp=848016b215f84afa830efb2bfcf6a6a68de0762f;hpb=689da1db7e2517c187ce76c6c553e20d630a7f36;p=NeonServV5.git diff --git a/src/modules/global.mod/cmd_global_bind.c b/src/modules/global.mod/cmd_global_bind.c index 848016b..4ee47a2 100644 --- a/src/modules/global.mod/cmd_global_bind.c +++ b/src/modules/global.mod/cmd_global_bind.c @@ -1,4 +1,4 @@ -/* cmd_global_bind.c - NeonServ v5.4 +/* cmd_global_bind.c - NeonServ v5.6 * Copyright (C) 2011-2012 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify @@ -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); }