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

Fixed sometimes not removing nick masks from the access list when the group is dropped

This commit is contained in:
Adam
2011-05-01 18:41:54 -04:00
parent 036b3c9053
commit 4a3c64291f
10 changed files with 102 additions and 81 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ public:
for (unsigned i = 0; i < ci->GetAccessCount(); ++i)
{
ChanAccess *access = ci->GetAccess(i);
target_ci->AddAccess(access->mask, access->level, access->creator, access->last_seen);
target_ci->AddAccess(access->GetMask(), access->level, access->creator, access->last_seen);
}
source.Reply(_("All access entries from \002%s\002 have been transferred to \002%s\002"), channel.c_str(), target.c_str());