From: MirceaKitsune Date: Tue, 19 Apr 2011 14:22:36 +0000 (+0300) Subject: With the last commit, it's now safe to allow setting the anim in player_setupanimsfor... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=78e59f86ded1a367754571256443dc6fb61c6124;p=voretournament%2Fvoretournament.git With the last commit, it's now safe to allow setting the anim in player_setupanimsformodel() --- diff --git a/data/qcsrc/server/cl_player.qc b/data/qcsrc/server/cl_player.qc index 3d2cf7a3..ed94dc4d 100644 --- a/data/qcsrc/server/cl_player.qc +++ b/data/qcsrc/server/cl_player.qc @@ -286,12 +286,8 @@ void player_setupanimsformodel() else dprint("File ", animfilename, " not found, assuming legacy .zym model animation timings\n"); - // the line below is disabled due to issues with the stomach model, which cannot be animated. - // customizeentityforclient cannot let this part of the code know whether it's the stomach model or normal - // player model we're using. Attempting to animate the stomach model causes BIG issues, and must not be allowed. - // reset animstate now - //setanim(self, self.anim_idle, TRUE, FALSE, TRUE); + setanim(self, self.anim_idle, TRUE, FALSE, TRUE); }; void player_anim (void)