From 7b02a5beeaf155ac89a45ef57aa9764cbd687221 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Sun, 10 Jul 2011 19:34:46 +0300 Subject: [PATCH] Allow the swallow model to be removed again when there's no more swallow progress --- data/qcsrc/server/vore.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.2