diff options
| author | 2010-03-04 17:02:32 -0600 | |
|---|---|---|
| committer | 2010-08-03 17:32:39 -0400 | |
| commit | 1ada28ab2218d5e0b2f9505e81625a352a175f7d (patch) | |
| tree | 768fa3061ca30ed9ee3b3ce9d3cb2b55ce20677d /src/command_parse.cpp | |
| parent | Allow <oper:classes> to specify classes in addition to <type:classes> (diff) | |
Change connect class inheritance to use references, allows conn_umode and conn_join to inherit
Diffstat (limited to 'src/command_parse.cpp')
| -rw-r--r-- | src/command_parse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 2e20fc27f..204b5b94d 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -271,7 +271,7 @@ bool CommandParser::ProcessCommand(LocalUser *user, std::string &cmd) return true; /* activity resets the ping pending timer */ - user->nping = ServerInstance->Time() + user->MyClass->GetPingTime(); + user->nping = ServerInstance->Time() + user->MyClass->pingtime; if (cm->second->flags_needed) { |
