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

Use the same object for chanusercontainer and userchancontainer

This commit is contained in:
Adam
2012-12-28 10:37:54 -05:00
parent 379b2ccf92
commit b591e8cdc8
33 changed files with 116 additions and 133 deletions
+2 -2
View File
@@ -100,10 +100,10 @@ class HybridProto : public IRCDProto
/* And update our internal status for this user since this is not going through our mode handling system */
if (status != NULL)
{
UserContainer *uc = c->FindUser(user);
ChanUserContainer *uc = c->FindUser(user);
if (uc != NULL)
*uc->status = *status;
uc->status = *status;
}
}