From 55887ff30f5322e8afc27dea6e626e77b5a57b37 Mon Sep 17 00:00:00 2001 From: MirceaKitsune Date: Thu, 2 Sep 2010 20:44:06 +0300 Subject: [PATCH] More fixes to the gurgle sound. I guess it's ready and working --- Todo & known bugs.txt | 2 -- data/defaultVoretournament.cfg | 1 + data/qcsrc/server/vore.qc | 3 ++- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Todo & known bugs.txt b/Todo & known bugs.txt index 2b56f67e..b3b9fb03 100644 --- a/Todo & known bugs.txt +++ b/Todo & known bugs.txt @@ -10,8 +10,6 @@ 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 -- Ambient tummy noises - Known bugs: - VoreTournament freezes 6-7 seconds after startup for about 5 seconds. This is due to the rebranding (using the -customgamename flag) diff --git a/data/defaultVoretournament.cfg b/data/defaultVoretournament.cfg index 7c627464..a09426e3 100644 --- a/data/defaultVoretournament.cfg +++ b/data/defaultVoretournament.cfg @@ -1491,6 +1491,7 @@ seta g_ghost_items_color "-1 -1 -1" "color of ghosted items, 0 0 0 leaves the co set g_vore_regurgitatecolor_released "0.75 1 0.5" "the color players will have when released from the stomach alive" set g_vore_regurgitatecolor_digested "-0.125 0.25 0" "the color players will have when released from the stomach digested" +set g_vore_gurglesound 1 "allow the ambient gurgle sound to play when there's someone in your stomach" set g_vore_biggergut 1 "when enabled, a player can't swallow someone with more players in their stomach than them" 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" set g_vore_showpreyhealth 1 "when enabled, a predator can see their prey's health on the stomach board" diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 2d6bcc8c..b43a4db2 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -307,7 +307,8 @@ void Vore() } } - Vore_Gurglesound(); + if(cvar("g_vore_gurglesound")) + Vore_Gurglesound(); // -------------------------------- // Code that addresses the prey: -- 2.39.2