diff options
author | Adam <Adam@anope.org> | 2015-09-14 12:24:13 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2015-09-14 12:24:13 -0400 |
commit | 2f5e880e57be3d4881c47da991334c516e76ffaf (patch) | |
tree | 685d4c5b52ffa21844effa1311ca8da8a3e220ba /include | |
parent | 94f781726ec14db780fdd376195ed81aa1f70464 (diff) |
Don't update channel last used time from ns alist access check
Diffstat (limited to 'include')
-rw-r--r-- | include/regchannel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/regchannel.h b/include/regchannel.h index 50e0ceed2..7713db056 100644 --- a/include/regchannel.h +++ b/include/regchannel.h @@ -133,8 +133,8 @@ class CoreExport ChannelInfo : public Serializable, public Extensible /** Retrieve the access for a user or group in the form of a vector of access entries * (as multiple entries can affect a single user). */ - AccessGroup AccessFor(const User *u); - AccessGroup AccessFor(const NickCore *nc); + AccessGroup AccessFor(const User *u, bool updateLastUsed = true); + AccessGroup AccessFor(const NickCore *nc, bool updateLastUsed = true); /** Get the size of the accss vector for this channel * @return The access vector size |