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

Add the rpc_message module, remove the notice RPC event.

This commit is contained in:
Sadie Powell
2025-03-13 15:11:37 +00:00
parent 645f969d70
commit fd6770373f
7 changed files with 264 additions and 35 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ class AnopeRPC
*/
public function notice($source, $target, $message)
{
return $this->run("notice", [$source, $target, $message]);
return $this->run("anope.messageUser", [$source, $target, $message]);
}
/**