1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 19:46:39 +02:00

Fix the messageUser function in the JavaScript library.

This commit is contained in:
Sadie Powell
2025-03-13 15:27:07 +00:00
parent 23d548336a
commit b4d068b01a
+1 -1
View File
@@ -169,7 +169,7 @@ class AnopeRPC {
* @param {...*} messages One or more messages to send.
*/
messageUser(source, target, ...messages) {
return this.run("anope.messageServer", source, target, ...messages);
return this.run("anope.messageUser", source, target, ...messages);
}
}