summaryrefslogtreecommitdiff
path: root/src/cgame/cg_event.c
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2001-01-27 22:43:12 +0000
committerTim Angus <tim@ngus.net>2001-01-27 22:43:12 +0000
commit3d0fef73d7b3494bc4457953332d79e51a522201 (patch)
tree9a890ba1002e25cf2d32c8460b0a2ea779b424e4 /src/cgame/cg_event.c
parent9eb4b77de0fa7e23bb31c861718cdd0b3666b905 (diff)
Ugh, haven't done this in weeks. Um. New creep system, half built new torchlight and the usual assortment of bug fixes.
Diffstat (limited to 'src/cgame/cg_event.c')
-rw-r--r--src/cgame/cg_event.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/cgame/cg_event.c b/src/cgame/cg_event.c
index eb92bd28..42ac22da 100644
--- a/src/cgame/cg_event.c
+++ b/src/cgame/cg_event.c
@@ -815,6 +815,12 @@ void CG_EntityEvent( centity_t *cent, vec3_t position ) {
DEBUGNAME("EV_ITEM_GROW");
cent->miscTime = cg.time; // scale up from this
break;
+
+ //TA: make droid creep "recede"
+ case EV_ITEM_RECEDE:
+ DEBUGNAME("EV_ITEM_RECEDE");
+ cent->miscTime = -cg.time; // scale down from this
+ break;
case EV_GRENADE_BOUNCE:
DEBUGNAME("EV_GRENADE_BOUNCE");
@@ -956,8 +962,8 @@ void CG_EntityEvent( centity_t *cent, vec3_t position ) {
CG_GibPlayer( cent->lerpOrigin );
break;
- case EV_GIB_GENERIC:
- DEBUGNAME("EV_GIB_GENERIC");
+ case EV_GIB_DROID:
+ DEBUGNAME("EV_GIB_DROID");
trap_S_StartSound( NULL, es->number, CHAN_BODY, cgs.media.gibSound );
CG_GenericGib( cent->lerpOrigin );
break;