From a52293336f0a0b87ed4a21dbe2b2b1dc2caf934f Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 29 Mar 2013 23:51:45 -0500 Subject: [PATCH] This reference to see if nickcores go away during command execution is no longer necessary --- src/command.cpp | 3 --- 1 file changed, 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 nc_reference(source.nc); c->Execute(source, params); - if (!nc_reference) - source.nc = NULL; FOREACH_MOD(I_OnPostCommand, OnPostCommand(source, c, params)); }