mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-23 20:52:16 +00:00
fixed drop case
This commit is contained in:
parent
e03c65ab0d
commit
29a4192ccc
1 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.48 2002/09/09 02:26:18 niceass
|
||||||
|
// fixed drop case
|
||||||
|
//
|
||||||
// Revision 1.47 2002/09/07 23:30:43 jbravo
|
// Revision 1.47 2002/09/07 23:30:43 jbravo
|
||||||
// Dropped cases stay on the map for 45 seconds (was 30)
|
// Dropped cases stay on the map for 45 seconds (was 30)
|
||||||
//
|
//
|
||||||
|
@ -633,7 +636,12 @@ void Touch_Item(gentity_t * ent, gentity_t * other, trace_t * trace)
|
||||||
predict = qfalse;
|
predict = qfalse;
|
||||||
break;
|
break;
|
||||||
case IT_TEAM:
|
case IT_TEAM:
|
||||||
|
// NiceAss: can't pick it up if it's in mid-flight (someone dropped it)
|
||||||
|
if ( ent->s.pos.trDelta[2] != 0.0f )
|
||||||
|
return;
|
||||||
|
|
||||||
respawn = Pickup_Team(ent, other);
|
respawn = Pickup_Team(ent, other);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case IT_HOLDABLE:
|
case IT_HOLDABLE:
|
||||||
//Elder: check to see if it's in mid-air
|
//Elder: check to see if it's in mid-air
|
||||||
|
|
Loading…
Reference in a new issue