From: MirceaKitsune Date: Thu, 9 Sep 2010 22:59:03 +0000 (+0300) Subject: team vore also needs to be enabled in order to show the teamheal team bubble X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1ff32fa85b80080b1b779e15311263c225f17a59;p=voretournament%2Fvoretournament.git team vore also needs to be enabled in order to show the teamheal team bubble --- diff --git a/data/qcsrc/server/cl_client.qc b/data/qcsrc/server/cl_client.qc index 313c7995..393463cc 100644 --- a/data/qcsrc/server/cl_client.qc +++ b/data/qcsrc/server/cl_client.qc @@ -1639,7 +1639,8 @@ void TeamBubbleThink() self.model = ""; else { - if(cvar("g_balance_vore_teamheal") && self.owner.health < cvar("g_balance_vore_teamheal_stable")) + if(cvar("g_balance_vore_teamheal") && cvar("g_vore_teamvore")) + if(self.owner.health < cvar("g_balance_vore_teamheal_stable")) setmodel(self, "models/misc/teambubbleheal.spr"); // indicate that this player can be teamhealed else setmodel(self, "models/misc/teambubble.spr");