summaryrefslogtreecommitdiff
path: root/src/command_parse.cpp
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-03-04 17:02:32 -0600
committerGravatar Daniel De Graaf2010-08-03 17:32:39 -0400
commit1ada28ab2218d5e0b2f9505e81625a352a175f7d (patch)
tree768fa3061ca30ed9ee3b3ce9d3cb2b55ce20677d /src/command_parse.cpp
parentAllow <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.cpp2
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)
{