diff options
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/users.h b/include/users.h index bf4ba4de2..f8bfb5a6e 100644 --- a/include/users.h +++ b/include/users.h @@ -832,8 +832,8 @@ class CoreExport FakeUser : public User nick = srv->GetName(); } - FakeUser(const std::string& uid, const std::string& sname) - : User(uid, new Server(sname), USERTYPE_SERVER) + FakeUser(const std::string& uid, const std::string& sname, const std::string& sdesc) + : User(uid, new Server(sname, sdesc), USERTYPE_SERVER) { nick = sname; } |