1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 23:03:12 +02:00

Fix bs_kick not using the correct kick message for automatic kicks.

Closes #354.
This commit is contained in:
Sadie Powell
2024-02-26 16:36:47 +00:00
parent 6be4df3b39
commit 2962a0be8c
+1 -1
View File
@@ -1104,7 +1104,7 @@ class BSKick final
vsnprintf(buf, sizeof(buf), fmt.c_str(), args);
va_end(args);
ci->c->Kick(ci->bi, u, "%s", buf);
ci->c->Kick(ci->bi, u, Anope::string(buf));
}
public: