mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-12-18 00:31:14 +00:00
kill pressures at LCA
This commit is contained in:
parent
7cbc42826c
commit
d86c1994f8
2 changed files with 9 additions and 0 deletions
|
@ -54,3 +54,5 @@
|
|||
* Fixed subs and limchasecam
|
||||
* The captain status no longer stays on people after mapchanges
|
||||
* Commands like "drop weapon ; use throwing combat knife" now work as expected.
|
||||
* Pressures are killed on LCA
|
||||
* Matchmode ping determine code in
|
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.19 2002/07/02 07:22:10 niceass
|
||||
// kill pressures at LCA
|
||||
//
|
||||
// Revision 1.18 2002/06/16 20:06:13 jbravo
|
||||
// Reindented all the source files with "indent -kr -ut -i8 -l120 -lc120 -sob -bad -bap"
|
||||
//
|
||||
|
@ -665,6 +668,10 @@ void CG_AddPressureEntity(localEntity_t * le)
|
|||
vec3_t origin;
|
||||
float alpha;
|
||||
|
||||
// Kill it if LCA.
|
||||
if (cg.lca)
|
||||
CG_FreeLocalEntity(le);
|
||||
|
||||
if (le->leFlags == LEF_WATER) {
|
||||
return;
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue