1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-02 18:53:13 +02:00

Send nick!user@host in WALLOPS message from self.

Fix-for-fix 9f56fb4aa7
This commit is contained in:
Bram Matthys
2021-12-10 19:41:36 +01:00
parent 02547610fe
commit bf1860bba8
+1 -1
View File
@@ -107,5 +107,5 @@ CMD_FUNC(cmd_wallops)
sendto_wallops(client->direction, client, ":%s WALLOPS :%s", client->name, message);
if (MyUser(client))
sendto_one(client, NULL, ":%s WALLOPS :%s", client->name, message);
sendto_prefix_one(client, client, NULL, ":%s WALLOPS :%s", client->name, message);
}