diff options
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/users.cpp b/src/users.cpp index f75a2cf9f..59d19adff 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -338,6 +338,7 @@ userrec::userrec(InspIRCd* Instance) : ServerInstance(Instance) sendq = ""; WriteError = ""; res_forward = res_reverse = NULL; + Visibility = NULL; ip = NULL; chans.clear(); invites.clear(); @@ -1952,4 +1953,16 @@ const char* userrec::GetOperQuit() return operquit ? operquit : ""; } +VisData::VisData() +{ +} + +VisData::~VisData() +{ +} + +bool VisData::VisibleTo(userrec* user) +{ + return true; +} |