From 7265532171c6dba70893b0738459dddc7d4cac25 Mon Sep 17 00:00:00 2001 From: Ari Johnson Date: Thu, 8 Dec 2022 23:06:37 -0500 Subject: [PATCH] Fix bug in channel_description() --- src/extchat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.30.2