We need to actually implement these.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@535 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-11-26 06:06:43 +00:00
parent 4d9b310c5c
commit 3822458c53
1 changed files with 23 additions and 0 deletions

View File

@ -851,6 +851,29 @@ void CL_ParseTEnt (void)
break;
case 74://TE_FLAMEJET
#pragma message("CL_ParseTEnt: effect 74 not implemented (properly)")
pos[0] = MSG_ReadCoord ();
pos[1] = MSG_ReadCoord ();
pos[2] = MSG_ReadCoord ();
pos2[0] = MSG_ReadCoord ();
pos2[1] = MSG_ReadCoord ();
pos2[2] = MSG_ReadCoord ();
cnt = MSG_ReadByte ();
R_ParticleExplosion (pos);
break;
case 75://TE_PLASMABURN
#pragma message("CL_ParseTEnt: effect 75 not implemented (properly)")
pos[0] = MSG_ReadCoord ();
pos[1] = MSG_ReadCoord ();
pos[2] = MSG_ReadCoord ();
R_ParticleExplosion (pos);
break;
case 76:
#pragma message("CL_ParseTEnt: effect 76 not implemented")
pos[0] = MSG_ReadCoord ();