From: MirceaKitsune Date: Sun, 5 Sep 2010 14:47:01 +0000 (+0300) Subject: Stop the belly gurgling sound for disconnected players X-Git-Url: http://de.git.xonotic.org/?p=voretournament%2Fvoretournament.git;a=commitdiff_plain;h=2634764de20e3f411bde6fd8a39985299777b1cf Stop the belly gurgling sound for disconnected players --- diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc index 3a7982db..f78e6bfe 100644 --- a/data/qcsrc/server/vore.qc +++ b/data/qcsrc/server/vore.qc @@ -131,6 +131,7 @@ void Vore_Regurgitate(entity e) e.eater = world; } +void Vore_Gurglesound(); void Vore_Disconnect() { // frees prey from their predators when someone disconnects or goes spectating @@ -153,6 +154,7 @@ void Vore_Disconnect() if(head.eater == self) Vore_Regurgitate(head); } + Vore_Gurglesound(); // stop the gurgling sound } }