diff --git a/Changes b/Changes index 7da199b29..afadd56cb 100644 --- a/Changes +++ b/Changes @@ -2229,3 +2229,5 @@ seen. gmtime warning still there - Docs update - Temporarily disabled compiling TRE *** Unreal3.2-beta17 release *** (god save us) +- Modified './update', now points to docs until we have a new update thingy. +- Fixed bug with /list and '?' wildcard, reported by maGGus. diff --git a/src/channel.c b/src/channel.c index 86e686d34..5f84ba84a 100644 --- a/src/channel.c +++ b/src/channel.c @@ -4159,7 +4159,7 @@ CMD_FUNC(m_list) nolist = lp; DupString(lp->value.cp, name + 1); } - else if (strchr(name, '*') || strchr(name, '*')) + else if (strchr(name, '*') || strchr(name, '?')) { doall = 1; lp = make_link();