From: MirceaKitsune Date: Sun, 31 Jul 2011 21:32:11 +0000 (+0300) Subject: Don't bulge the belly at all if our total prey is very small compared to us. Stomach... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=85ea5be40cc5a42dab9e2ee7b20fb0f0adf4c208;p=voretournament%2Fvoretournament.git Don't bulge the belly at all if our total prey is very small compared to us. Stomach states are now applied as follows: 0% - 25% load = no belly bulge (normal model), 25%-50% small belly, 50%-75% medium belly, 75%-100% large belly. --- diff --git a/data/qcsrc/server/cl_client.qc b/data/qcsrc/server/cl_client.qc index 8a503053..2522ec30 100644 --- a/data/qcsrc/server/cl_client.qc +++ b/data/qcsrc/server/cl_client.qc @@ -436,11 +436,11 @@ string setmodel_state() newmodel_extension = substring(self.playermodel, strlen(self.playermodel) - 4, 4); float vore_state; - if(self.stomach_load > self.stomach_maxload * 0.6) + if(self.stomach_load > self.stomach_maxload * 0.75) vore_state = 3; - else if(self.stomach_load > self.stomach_maxload * 0.3) + else if(self.stomach_load > self.stomach_maxload * 0.5) vore_state = 2; - else if(self.stomach_load) + else if(self.stomach_load > self.stomach_maxload * 0.25) vore_state = 1; if(vore_state)