diff --git a/Changes b/Changes index 71188d660..6fc1e7a0d 100644 --- a/Changes +++ b/Changes @@ -544,3 +544,6 @@ - Recoded /links using NS - Recoded /map a bit using NS, and added usercounts to Server struct - Some crazy time_t -> TS stuff, will save us some time in 2038 +- Fixed the "/mode #blah +Cplkf 1 moo 5:5" ( mode/#blah [+pClkf 1moo 5:5] + problem + \ No newline at end of file diff --git a/src/channel.c b/src/channel.c index 96fdf40f0..998ce206c 100644 --- a/src/channel.c +++ b/src/channel.c @@ -1450,7 +1450,7 @@ void make_mode_str(chptr, oldm, oldl, pcount, pvar, mode_buf, parabuf, bounce) *x++ = 'l'; if (bounce) chptr->mode.limit = oldl; /* set it back */ - ircsprintf(parabuf, "%s%d", parabuf, chptr->mode.limit); + ircsprintf(parabuf, "%s%d ", parabuf, chptr->mode.limit); } } /* reconstruct bkov chain */