X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/f5b217c4fd4d7f37bc978ecd45e0ba1821f90258..0b401fb654b69fd9649954a9bdd5ff041971e62d:/src/modcmd.c?ds=inline diff --git a/src/modcmd.c b/src/modcmd.c index 70fe6fc..f3a8f53 100644 --- a/src/modcmd.c +++ b/src/modcmd.c @@ -1136,9 +1136,8 @@ check_alias_args(char *argv[], unsigned int argc) { continue; } else if (isdigit(argv[arg][1])) { char *end_num; - unsigned long tmp; - tmp = strtoul(argv[arg]+1, &end_num, 10); + strtoul(argv[arg]+1, &end_num, 10); switch (end_num[0]) { case 0: continue; @@ -2064,7 +2063,7 @@ static MODCMD_FUNC(cmd_credits) { send_message_type(4, user, cmd->parent->bot, "$b$b"); send_message_type(4, user, cmd->parent->bot, "The srvx 1.3.x Development Team includes Paul Chang, Adrian Dewhurst, Miles Peterson, Michael Poole and others."); send_message_type(4, user, cmd->parent->bot, "The X3 Development Team includes Alex Schumann, Reed Loden, Neil Spierling, Matthew Beeching."); - send_message_type(4, user, cmd->parent->bot, "The X3 Development Team can be reached at http://evilnet.sourceforge.net or in #evilnet on irc.afternet.org."); + send_message_type(4, user, cmd->parent->bot, "The X3 Development Team can be reached at https://github.com/evilnet/x3/ or in #evilnet on irc.afternet.org."); send_message_type(4, user, cmd->parent->bot, "$b$b"); send_message_type(4, user, cmd->parent->bot, "Thanks goes to ThiefMaster, Joe Hansche (joeatrr), Martijn Smit (wasted), and to any other people who have contributed to X3."); send_message_type(4, user, cmd->parent->bot, "This program is free software; see COPYING in the distribution files.");