mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-11 15:52:30 +00:00
Trigger_hurt update
This commit is contained in:
parent
ff05cf7ceb
commit
66e8d26242
1 changed files with 6 additions and 2 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.11 2002/05/11 17:59:49 makro
|
||||||
|
// Trigger_hurt update
|
||||||
|
//
|
||||||
// Revision 1.10 2002/05/11 00:38:47 blaze
|
// Revision 1.10 2002/05/11 00:38:47 blaze
|
||||||
// trigger_push and target_push default to no noise when the noise flag is not set.
|
// trigger_push and target_push default to no noise when the noise flag is not set.
|
||||||
//
|
//
|
||||||
|
@ -413,9 +416,10 @@ void SP_trigger_hurt( gentity_t *self ) {
|
||||||
|
|
||||||
self->r.contents = CONTENTS_TRIGGER;
|
self->r.contents = CONTENTS_TRIGGER;
|
||||||
|
|
||||||
if ( self->spawnflags & 2 ) {
|
//Makro - removed this check
|
||||||
|
//if ( self->spawnflags & 2 ) {
|
||||||
self->use = hurt_use;
|
self->use = hurt_use;
|
||||||
}
|
//}
|
||||||
|
|
||||||
// link in to the world if starting active
|
// link in to the world if starting active
|
||||||
if ( ! (self->spawnflags & 1) ) {
|
if ( ! (self->spawnflags & 1) ) {
|
||||||
|
|
Loading…
Reference in a new issue