From: Ari Johnson Date: Fri, 9 Dec 2022 04:06:37 +0000 (-0500) Subject: Fix bug in channel_description() X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=7265532171c6dba70893b0738459dddc7d4cac25;p=cobramush.git Fix bug in channel_description() --- diff --git a/src/extchat.c b/src/extchat.c index c4abdff..4a6e837 100644 --- a/src/extchat.c +++ b/src/extchat.c @@ -3095,9 +3095,10 @@ channel_description(dbref player) if (Chanlist(player)) { safe_str(T("Channels:"), buf, &bp); - for (c = Chanlist(player); c; c = c->next) + for (c = Chanlist(player); c; c = c->next) { safe_chr(' ', buf, &bp); safe_str(ChanName(c->chan), buf, &bp); + } } else if (IsPlayer(player)) safe_str(T("Channels: *NONE*"), buf, &bp);