mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-04-05 00:50:56 +00:00
Update Mover.cpp
This commit is contained in:
parent
707bf993d4
commit
8eacbd2b53
1 changed files with 12 additions and 0 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue