summary refs log tree commit diff
path: root/handle.c
diff options
context:
space:
mode:
authorC. McEnroe2021-11-16 14:16:43 -0500
committerC. McEnroe2021-11-16 14:16:43 -0500
commitbd3e0ac76b3bf8da1ae785f7af7355748b1f2656 (patch)
tree261f8ea0d5fb269b2e26ce337c60713ab2e22e49 /handle.c
parentd06ac675c6d70482a4e2c76f32068c3e8774569c (diff)
Make the /ops response more flavourful
How did this normal sounding format string get in there!
Diffstat (limited to 'handle.c')
-rw-r--r--handle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/handle.c b/handle.c
index 38fd132..7721745 100644
--- a/handle.c
+++ b/handle.c
@@ -571,7 +571,7 @@ static void handleReplyWho(struct Message *msg) {
 	require(msg, false, 7);
 	if (who.ptr == who.buf) {
 		who.ptr = seprintf(
-			who.ptr, who.end, "The operators of \3%02d%s\3 are ",
+			who.ptr, who.end, "The council of \3%02d%s\3 are ",
 			hash(msg->params[1]), msg->params[1]
 		);
 	}