From 8d0ac37604dd374cf8a2c1f331afea79b15608b9 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Thu, 12 Jan 2017 09:19:07 +0100 Subject: [PATCH] Fix some compatibility handling of GLOBOPS. Reported by Jobe (#4836). Note that you should actually use SENDUMODE instead. --- src/modules/m_globops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/m_globops.c b/src/modules/m_globops.c index 2def3bfc1..131217b36 100644 --- a/src/modules/m_globops.c +++ b/src/modules/m_globops.c @@ -84,7 +84,7 @@ CMD_FUNC(m_globops) /* Backward-compatible (3.2.x) */ sendto_umode(UMODE_OPER, "from %s: %s", sptr->name, message); sendto_server(cptr, 0, 0, ":%s SENDUMODE o :from %s: %s", - sptr->name, sptr->name, message); + me.name, sptr->name, message); } return 0;