X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fcmd_global_addbot.c;h=1783834107ae5fab03b822e8d78746b5836d7288;hb=f90d21daf31f8d69e24406678be696afa8cae962;hp=236b8c563bda2238ae11b53067a95d122a99f5ba;hpb=44436a96352a38631237978c9fd431cef3d85cfb;p=NeonServV5.git diff --git a/src/cmd_global_addbot.c b/src/cmd_global_addbot.c index 236b8c5..1783834 100644 --- a/src/cmd_global_addbot.c +++ b/src/cmd_global_addbot.c @@ -1,5 +1,5 @@ /* cmd_global_addbot.c - NeonServ v5.3 - * Copyright (C) 2011 Philipp Kreil (pk910) + * Copyright (C) 2011-2012 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -36,7 +36,7 @@ CMD_BIND(global_cmd_addbot) { return; } printf_mysql_query("INSERT INTO `bots` (`nick`, `botclass`) VALUES ('%s', '%d')", escape_string(argv[0]), botid); - botid = (int) mysql_insert_id(mysql_conn); + botid = (int) mysql_insert_id(get_mysql_conn()); reply(getTextBot(), user, "NS_ADDBOT_DONE", argv[0], botid); logEvent(event); }