From 5ceee5df3854e71ce1c8da409fe50a705efae8ad Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 12 Oct 2014 14:32:17 -0400 Subject: [PATCH] Hide dumb user notice if we are quitting --- src/uplink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uplink.cpp b/src/uplink.cpp index 8f54794a2..86851fc50 100644 --- a/src/uplink.cpp +++ b/src/uplink.cpp @@ -66,7 +66,7 @@ UplinkSocket::UplinkSocket() : Socket(-1, Config->Uplinks[Anope::CurrentUplink]. UplinkSocket::~UplinkSocket() { - if (!error) + if (!error && !Anope::Quitting) { this->OnError(""); Module *protocol = ModuleManager::FindFirstOf(PROTOCOL);