From c79a57545259695f961cf79326a6eb8f78255cbc Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 26 Oct 2011 15:17:05 -0400 Subject: [PATCH] Bug #1348 - Fixed /cs entrymsg list --- modules/commands/cs_entrymsg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/commands/cs_entrymsg.cpp b/modules/commands/cs_entrymsg.cpp index 6fa8d5dd3..7e927a343 100644 --- a/modules/commands/cs_entrymsg.cpp +++ b/modules/commands/cs_entrymsg.cpp @@ -72,7 +72,7 @@ class CommandEntryMessage : public Command void DoList(CommandSource &source, ChannelInfo *ci) { EntryMessageList *messages = ci->GetExt("cs_entrymsg"); - if (messages == NULL) + if (messages != NULL) { source.Reply(_("Entry message list for \2%s\2:"), ci->name.c_str()); for (unsigned i = 0; i < messages->size(); ++i)