From 0810982b57130f9c6b7a737d696c4fb1c0dbf872 Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Mon, 7 Jun 2010 15:41:07 +0200 Subject: [PATCH] Fix bug #136 - !broadcast does not report status back to to sender. --- src/core/commands.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/commands.c b/src/core/commands.c index 19a556c..843db9f 100644 --- a/src/core/commands.c +++ b/src/core/commands.c @@ -452,6 +452,7 @@ static int command_broadcast(struct hub_info* hub, struct hub_user* user, struct } snprintf(buffer, sizeof(buffer), "*** %s: Delivered to " PRINTF_SIZE_T " user%s", cmd->prefix, recipients, (recipients != 1 ? "s" : "")); + send_message(hub, user, buffer); return 0; #endif }