mirror of
https://github.com/anope/anope.git
synced 2026-07-03 02:43:13 +02:00
Interally quit servers when juped
This commit is contained in:
+6
-1
@@ -173,7 +173,12 @@ UplinkSocket::Message::~Message()
|
||||
}
|
||||
else if (this->user != NULL)
|
||||
{
|
||||
if (this->user->server != Me && !this->user->server->IsJuped())
|
||||
if (this->user->server == NULL)
|
||||
{
|
||||
Log(LOG_DEBUG) << "Attempted to send \"" << this->buffer.str() << "\" from " << this->user->nick << " who has no server (I'm not introduced?)";
|
||||
return;
|
||||
}
|
||||
else if (this->user->server != Me && !this->user->server->IsJuped())
|
||||
{
|
||||
Log(LOG_DEBUG) << "Attempted to send \"" << this->buffer.str() << "\" from " << this->user->nick << " who is not from me?";
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user