X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodules%2Fglobal.mod%2Fcmd_global_netinfo.c;h=a976e004c09556171b5c55893fb184a7802ebdf3;hb=de5f0224c8b119f1be15457262bd6e66f160657f;hp=b07fdd90828d9e73a2b2dc3cf8f8b9304ad975b6;hpb=9f5af1bc8ff4e8fc9c28433c76a890a990dd0ae5;p=NeonServV5.git diff --git a/src/modules/global.mod/cmd_global_netinfo.c b/src/modules/global.mod/cmd_global_netinfo.c index b07fdd9..a976e00 100644 --- a/src/modules/global.mod/cmd_global_netinfo.c +++ b/src/modules/global.mod/cmd_global_netinfo.c @@ -22,7 +22,7 @@ */ CMD_BIND(global_cmd_netinfo) { - reply(getTextBot(), user, "NS_NETINFO_HEADER"); + reply(textclient, user, "NS_NETINFO_HEADER"); char tmp[MAXLEN]; struct Table *table; table = table_init(2, 19, 0); @@ -170,7 +170,7 @@ CMD_BIND(global_cmd_netinfo) { char **table_lines = table_end(table); int i; for(i = 0; i < table->entrys; i++) { - reply(getTextBot(), user, table_lines[i]); + reply(textclient, user, table_lines[i]); } table_free(table); }