From: tomaz Date: Sun, 8 Aug 2004 21:04:51 +0000 (+0000) Subject: Fixed the missing colorlength param on te_explosion2 X-Git-Tag: xonotic-v0.1.0preview~5761 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f4d42137002e04f4e1cd18b9c807b1803d6a8854;p=xonotic%2Fdarkplaces.git Fixed the missing colorlength param on te_explosion2 git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4312 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/pr_cmds.c b/pr_cmds.c index cab894a3..0839455e 100644 --- a/pr_cmds.c +++ b/pr_cmds.c @@ -2504,6 +2504,7 @@ void PF_te_explosion2 (void) MSG_WriteDPCoord(&sv.datagram, G_VECTOR(OFS_PARM0)[2]); // color MSG_WriteByte(&sv.datagram, G_FLOAT(OFS_PARM1)); + MSG_WriteByte(&sv.datagram, G_FLOAT(OFS_PARM2)); } void PF_te_lightning1 (void)