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

added more events

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2461 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
DukePyrolator
2009-08-22 04:39:22 +00:00
parent bcf9852eec
commit 4bf22fa2e6
4 changed files with 37 additions and 3 deletions
+2
View File
@@ -429,6 +429,7 @@ User *finduser(const char *nick)
user = user->next;
if (debug >= 3)
alog("debug: finduser(%s) -> 0x%p", nick, static_cast<void *>(user));
FOREACH_MOD(I_OnFindUser, OnFindUser(user));
return user;
}
@@ -474,6 +475,7 @@ User *find_byuid(const char *uid)
while (u) {
next = next_uid();
if (u->GetUID() == uid) {
FOREACH_MOD(I_OnFindUser, OnFindUser(u));
return u;
}
u = next;