From: MirceaKitsune Date: Sun, 10 Jul 2011 16:34:46 +0000 (+0300) Subject: Allow the swallow model to be removed again when there's no more swallow progress X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=7b02a5beeaf155ac89a45ef57aa9764cbd687221;p=voretournament%2Fvoretournament.git Allow the swallow model to be removed again when there's no more swallow progress --- diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 3e6cac56..5f16c965 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -207,13 +207,13 @@ void Vore_SwallowModel_Think() self.alpha = self.owner.cvar_cl_vore_stomachmodel; // if our swallow progress is gone, the swallow model must also go - /*if(!self.owner.swallow_progress_prey) + if(!self.owner.swallow_progress_prey) { self.nextthink = 0; remove(self); self = world; return; - }*/ + } self.nextthink = time; }