diff options
| author | 2007-05-04 14:30:08 +0000 | |
|---|---|---|
| committer | 2007-05-04 14:30:08 +0000 | |
| commit | 3759fe0ba2420bd564abb4b034582ea0866907aa (patch) | |
| tree | 23b261f13410ad3fefcd74c3ee06bf21a7bc95fe /src/users.cpp | |
| parent | Add auditorium to example conf (diff) | |
| download | inspircd++-3759fe0ba2420bd564abb4b034582ea0866907aa.tar.gz inspircd++-3759fe0ba2420bd564abb4b034582ea0866907aa.tar.bz2 inspircd++-3759fe0ba2420bd564abb4b034582ea0866907aa.zip | |
Where others charge, we give for free. Have fun and use wisely. With great power comes great responsbility.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6867 e03df62e-2008-0410-955e-edbf42e46eb7
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; +} |
