From: MirceaKitsune <sonichedgehog_hyperblast00@yahoo.com>
Date: Mon, 18 Jul 2011 15:54:24 +0000 (+0300)
Subject: More descriptive swallow message when out of prey capacity
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6e863acf4c9784c40febb92545b1bea3498edeee;p=voretournament%2Fvoretournament.git

More descriptive swallow message when out of prey capacity
---

diff --git a/data/qcsrc/server/vore.qc b/data/qcsrc/server/vore.qc
index 617fd02a..168f27f5 100644
--- a/data/qcsrc/server/vore.qc
+++ b/data/qcsrc/server/vore.qc
@@ -52,7 +52,7 @@ float Swallow_condition_check(entity prey)
 		else if(!cvar("g_vore_spawnshield") && prey.spawnshieldtime > time)
 			swallow_complain = "You cannot swallow someone protected by the spawn shield\n";
 		else if(self.stomach_load + prey_mass > self.stomach_maxload)
-			swallow_complain = "You don't have any more room to swallow this player.\n";
+			swallow_complain = strcat("You don't have any room to swallow this player. Their mass is ^3", ftos(prey_mass), "^7 and your remaining capacity is ^3 ", ftos(self.stomach_maxload - self.stomach_load), "\n");
 		else if(cvar("g_vore_biggergut") && prey.stomach_load > self.stomach_load)
 			swallow_complain = "You cannot swallow someone with a bigger stomach than yours\n";
 		else if(cvar("g_vore_biggersize") && prey.scale > self.scale)