From: Mario Date: Mon, 24 Oct 2016 22:44:09 +0000 (+1000) Subject: Clear clients from the intrusive lists on disconnect X-Git-Tag: xonotic-v0.8.2~472 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=c6edebc74c718bccb7d70b52637c8b08fa69465f Clear clients from the intrusive lists on disconnect --- diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index db46221d5e..b563f354f9 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -1276,6 +1276,8 @@ void ClientDisconnect(entity this) this.playerid = 0; ReadyCount(); if (vote_called && IS_REAL_CLIENT(this)) VoteCount(false); + + ONREMOVE(this); } void ChatBubbleThink(entity this)