Update Mover.cpp

This commit is contained in:
ALord7 2024-08-27 11:00:47 +08:00 committed by GitHub
parent 707bf993d4
commit 8eacbd2b53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1004,6 +1004,9 @@ void idMover::Event_PartBlocked( idEntity *blockingEntity ) {
if ( g_debugMover.GetBool() ) {
gameLocal.Printf( "%d: '%s' blocked by '%s'\n", gameLocal.time, name.c_str(), blockingEntity->name.c_str() );
}
if ( blockingEntity->IsType( idMoveableGibItem::Type ) ) { // darknar, remove gib if is blocking the mover
blockingEntity->PostEventMS( &EV_Remove, 0 );
}
}
/*
@ -3790,6 +3793,9 @@ void idDoor::Event_PartBlocked( idEntity *blockingEntity ) {
if ( damage > 0.0f ) {
blockingEntity->Damage( this, this, vec3_origin, "damage_moverCrush", damage, INVALID_JOINT );
}
if ( blockingEntity->IsType( idMoveableGibItem::Type ) ) { // darknar, remove gib if is blocking the mover
blockingEntity->PostEventMS( &EV_Remove, 0 );
}
}
/*
@ -4227,6 +4233,9 @@ void idPlat::Event_PartBlocked( idEntity *blockingEntity ) {
if ( damage > 0.0f ) {
blockingEntity->Damage( this, this, vec3_origin, "damage_moverCrush", damage, INVALID_JOINT );
}
if ( blockingEntity->IsType( idMoveableGibItem::Type ) ) { // darknar, remove gib if is blocking the mover
blockingEntity->PostEventMS( &EV_Remove, 0 );
}
}
@ -4318,6 +4327,9 @@ void idMover_Periodic::Event_PartBlocked( idEntity *blockingEntity ) {
if ( damage > 0.0f ) {
blockingEntity->Damage( this, this, vec3_origin, "damage_moverCrush", damage, INVALID_JOINT );
}
if ( blockingEntity->IsType( idMoveableGibItem::Type ) ) { // darknar remove gib if is blocking the mover
blockingEntity->PostEventMS( &EV_Remove, 0 );
}
}
/*