diff options
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ircd.c b/src/ircd.c index 75fe8a3d7..4b549e132 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -38,9 +38,9 @@ void pmodule_ircd_proto(IRCDProto *proto) ircdproto = proto; } -void anope_set_umode(User *user, int ac, const char **av) +void anope_ProcessUsermodes(User *user, int ac, const char **av) { - ircdproto->set_umode(user, ac, av); + ircdproto->ProcessUsermodes(user, ac, av); } void anope_SendSVSNOOP(const char *server, int set) |