Fixed npc_manhack not notifying npc_template_maker/npc_maker when thrown and destroyed with gravity gun.

This commit is contained in:
ZehM4tt 2015-12-27 02:08:44 +01:00
parent 80cf6f02c3
commit f93b716fc7
2 changed files with 9 additions and 2 deletions

View file

@ -3007,6 +3007,9 @@ void CNPC_Manhack::OnPhysGunPickup( CBasePlayer *pPhysGunUser, PhysGunPickup_t r
}
else
{
// FIX: Remember the current owner in case we are from a npc_template_maker/npc_maker.
m_pPrevOwner.Set(GetOwnerEntity());
// Suppress collisions between the manhack and the player; we're currently bumping
// almost certainly because it's not purely a physics object.
SetOwnerEntity( pPhysGunUser );
@ -3022,8 +3025,11 @@ void CNPC_Manhack::OnPhysGunPickup( CBasePlayer *pPhysGunUser, PhysGunPickup_t r
//-----------------------------------------------------------------------------
void CNPC_Manhack::OnPhysGunDrop( CBasePlayer *pPhysGunUser, PhysGunDrop_t Reason )
{
// Stop suppressing collisions between the manhack and the player
SetOwnerEntity( NULL );
// Stop suppressing collisions between the manhack and the player
SetOwnerEntity(m_pPrevOwner.Get());
// Reset previous owner back to NULL.
m_pPrevOwner.Set(NULL);
m_bHeld = false;

View file

@ -254,6 +254,7 @@ private:
CSprite *m_pLightGlow;
CHandle<SmokeTrail> m_hSmokeTrail;
CHandle<CBaseEntity> m_pPrevOwner;
int m_iPanel1;
int m_iPanel2;