diff options
Diffstat (limited to 'src/users.c')
-rw-r--r-- | src/users.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.c b/src/users.c index 137190d05..c98a99133 100644 --- a/src/users.c +++ b/src/users.c @@ -277,7 +277,7 @@ User::~User() while (c) { c2 = c->next; - chan_deluser(this, c->chan); + c->chan->DeleteUser(this); delete c; c = c2; } |