]> de.git.xonotic.org Git - voretournament/voretournament.git/commitdiff
More fixes to the gurgle sound. I guess it's ready and working
authorMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 2 Sep 2010 17:44:06 +0000 (20:44 +0300)
committerMirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Thu, 2 Sep 2010 17:44:06 +0000 (20:44 +0300)
Todo & known bugs.txt
data/defaultVoretournament.cfg
data/qcsrc/server/vore.qc

index 2b56f67ec5ec0f398655b6c5795fe264f9920d1d..b3b9fb038a9da1891a997cb8b1269a8422ba164f 100644 (file)
@@ -10,8 +10,6 @@ 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
 \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
-- Ambient tummy noises\r
-\r
 Known bugs:\r
 \r
 - VoreTournament freezes 6-7 seconds after startup for about 5 seconds. This is due to the rebranding (using the -customgamename flag)\r
 Known bugs:\r
 \r
 - VoreTournament freezes 6-7 seconds after startup for about 5 seconds. This is due to the rebranding (using the -customgamename flag)\r
index 7c627464815c9db638f4f0e32c4ff5e6cb16e7e0..a09426e3c79bc966b30a0bbca87dcef56540cfe0 100644 (file)
@@ -1491,6 +1491,7 @@ seta g_ghost_items_color "-1 -1 -1" "color of ghosted items, 0 0 0 leaves the co
 \r
 set g_vore_regurgitatecolor_released "0.75 1 0.5" "the color players will have when released from the stomach alive"\r
 set g_vore_regurgitatecolor_digested "-0.125 0.25 0" "the color players will have when released from the stomach digested"\r
 \r
 set g_vore_regurgitatecolor_released "0.75 1 0.5" "the color players will have when released from the stomach alive"\r
 set g_vore_regurgitatecolor_digested "-0.125 0.25 0" "the color players will have when released from the stomach digested"\r
+set g_vore_gurglesound 1 "allow the ambient gurgle sound to play when there's someone in your stomach"\r
 set g_vore_biggergut 1 "when enabled, a player can't swallow someone with more players in their stomach than them"\r
 set g_vore_dropweapon 0.75 "probability of dropping your weapon when being swallowed. 0 = never and 1 = always, does not apply to team mates"\r
 set g_vore_showpreyhealth 1 "when enabled, a predator can see their prey's health on the stomach board"\r
 set g_vore_biggergut 1 "when enabled, a player can't swallow someone with more players in their stomach than them"\r
 set g_vore_dropweapon 0.75 "probability of dropping your weapon when being swallowed. 0 = never and 1 = always, does not apply to team mates"\r
 set g_vore_showpreyhealth 1 "when enabled, a predator can see their prey's health on the stomach board"\r
index 2d6bcc8cabbb92141693437dcf50a9975a1dbe18..b43a4db22d78987f20bcc93ce1c98fed37356618 100644 (file)
@@ -307,7 +307,8 @@ void Vore()
                }\r
        }\r
 \r
                }\r
        }\r
 \r
-       Vore_Gurglesound();\r
+       if(cvar("g_vore_gurglesound"))\r
+               Vore_Gurglesound();\r
 \r
 // --------------------------------\r
 // Code that addresses the prey:\r
 \r
 // --------------------------------\r
 // Code that addresses the prey:\r