]> de.git.xonotic.org Git - voretournament/voretournament.git/commitdiff
Fix more comments and add a TODO
authorMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Mon, 6 Sep 2010 17:44:01 +0000 (20:44 +0300)
committerMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Mon, 6 Sep 2010 17:44:01 +0000 (20:44 +0300)
Todo & known bugs.txt
data/qcsrc/server/vore.qc

index e2dde4793d40b1ba9b475c9e86710a1a1f47c957..25c10a55ac22d2852c4a76c787ca241b86db2772 100644 (file)
@@ -6,6 +6,8 @@ Todo:
 \r
 - 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\r
 \r
+- 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\r
+\r
 Known bugs:\r
 \r
 - Prey bots don't kick in the stomach in Arena and Clan Arena gametypes\r
index 8d59e2bbd8091e29ef0944a184db052fe4972a42..4dff84a1d3850fb5e74e51fed25cc49bf33ff4c3 100644 (file)
@@ -122,7 +122,7 @@ void Vore_Swallow(entity e)
                e.colormod = stov(cvar_string("g_vore_regurgitatecolor_released"));\r
 \r
        PlayerSound(e.eater, playersound_swallow, CHAN_PAIN, VOICETYPE_PLAYERSOUND);\r
-       setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing \ regurgitating\r
+       setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing / regurgitating\r
        e.eater.stomach_load += 1;\r
        e.eater.regurgitate_prepare = 0;\r
        Vore_Weight_apply(e.eater);\r
@@ -152,7 +152,7 @@ void Vore_Regurgitate(entity e)
        v_up = oldup;\r
 \r
        PlayerSound(e.eater, playersound_regurgitate, CHAN_PAIN, VOICETYPE_PLAYERSOUND);\r
-       setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing \ regurgitating\r
+       setanim(e.eater, e.eater.anim_pain1, FALSE, TRUE, TRUE); // looks good for swallowing / regurgitating\r
        pointparticles(particleeffectnum("regurgitate"), e.eater.origin, '0 0 0', 1);\r
        e.eater.stomach_load -= 1;\r
        e.eater.regurgitate_prepare = 0;\r
@@ -227,7 +227,7 @@ void Vore_Teamheal()
 .float stomachkick_delay;\r
 void Vore_StomachKick()\r
 {\r
-       // allows prey to kick the predator's stomach and do some damage / attempt to escape\r
+       // allows prey to kick the predator's stomach and do some damage or attempt to escape\r
        if(self.eater.classname != "player")\r
                return;\r
 \r