From: MirceaKitsune Date: Mon, 6 Sep 2010 17:44:01 +0000 (+0300) Subject: Fix more comments and add a TODO X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=22bd387815512ca61abbb6ca772103da931ec13c;p=voretournament%2Fvoretournament.git Fix more comments and add a TODO --- diff --git a/Todo & known bugs.txt b/Todo & known bugs.txt index e2dde479..25c10a55 100644 --- a/Todo & known bugs.txt +++ b/Todo & known bugs.txt @@ -6,6 +6,8 @@ Todo: - Bots must learn to use the Grabber gun. The weapon code of havocbot is still there, but doesn't know how to shoot the Grabber +- Add a feature that allows predators to steal the prey from their preys stomach instead of squeezing it out. So if you eat someone who already has someone in them, put that someone in you with the prey it was in. Should be cvared and disabled by default, but can be a random chance + Known bugs: - Prey bots don't kick in the stomach in Arena and Clan Arena gametypes diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 8d59e2bb..4dff84a1 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -122,7 +122,7 @@ void Vore_Swallow(entity e) e.colormod = stov(cvar_string("g_vore_regurgitatecolor_released")); PlayerSound(e.eater, playersound_swallow, CHAN_PAIN, VOICETYPE_PLAYERSOUND); - setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing \ regurgitating + setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing / regurgitating e.eater.stomach_load += 1; e.eater.regurgitate_prepare = 0; Vore_Weight_apply(e.eater); @@ -152,7 +152,7 @@ void Vore_Regurgitate(entity e) v_up = oldup; PlayerSound(e.eater, playersound_regurgitate, CHAN_PAIN, VOICETYPE_PLAYERSOUND); - setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing \ regurgitating + setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing / regurgitating pointparticles(particleeffectnum("regurgitate"), e.eater.origin, '0 0 0', 1); e.eater.stomach_load -= 1; e.eater.regurgitate_prepare = 0; @@ -227,7 +227,7 @@ void Vore_Teamheal() .float stomachkick_delay; void Vore_StomachKick() { - // allows prey to kick the predator's stomach and do some damage / attempt to escape + // allows prey to kick the predator's stomach and do some damage or attempt to escape if(self.eater.classname != "player") return;