diff options
author | Adam <Adam@anope.org> | 2013-03-29 23:51:45 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-03-29 23:51:45 -0500 |
commit | a52293336f0a0b87ed4a21dbe2b2b1dc2caf934f (patch) | |
tree | ab3752c6ad970b7289e1bd33a4c814c44c674f2f /src/command.cpp | |
parent | f24e17f8b4a579666bae050d81585d42059e7513 (diff) |
This reference to see if nickcores go away during command execution is no longer necessary
Diffstat (limited to 'src/command.cpp')
-rw-r--r-- | src/command.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/command.cpp b/src/command.cpp index 36bab658f..db30a25f3 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -280,10 +280,7 @@ void RunCommand(CommandSource &source, const Anope::string &message) return; } - Reference<NickCore> nc_reference(source.nc); c->Execute(source, params); - if (!nc_reference) - source.nc = NULL; FOREACH_MOD(I_OnPostCommand, OnPostCommand(source, c, params)); } |