mirror of
https://github.com/celisej567/source-sdk-2013.git
synced 2026-09-23 20:09:45 +03:00
Mapbase v2.1
- Fixed parallax corrected cubemaps not working when cubemaps are disabled - Fixed a crash with some new script_intro code - Fixed item_health/suitcharger not emptying or using correct animation with keyvalue charge - Added a new "Always touchable" spawnflag for weapons and items that should disregard obstructions - Added "OnFoundNPC" output on scripted_sequence for when a NPC starts moving to play the script - Fixed npc_snipers not working when parented or not working when attacking parented targets - Changed "ai_nographrebuildmessage" to "ai_norebuildgraphmessage" to reduce confusion and increase visibility (it is assumed nobody was using it before, at least not in a compatibility-breaking way) - Added damage bit modification to filter_damage_mod - Added Add/RemoveSolidFlags input to all entities + added "Collide with owner" solid flag from the VDC - Added custom model support to item_health/suitcharger
This commit is contained in:
@@ -219,6 +219,15 @@ bool PassServerEntityFilter( const IHandleEntity *pTouch, const IHandleEntity *p
|
||||
if ( !pEntTouch || !pEntPass )
|
||||
return true;
|
||||
|
||||
#ifdef MAPBASE
|
||||
// don't clip against own missiles
|
||||
if ( pEntTouch->GetOwnerEntity() == pEntPass && !pEntTouch->IsSolidFlagSet(FSOLID_COLLIDE_WITH_OWNER) )
|
||||
return false;
|
||||
|
||||
// don't clip against owner
|
||||
if ( pEntPass->GetOwnerEntity() == pEntTouch && !pEntPass->IsSolidFlagSet(FSOLID_COLLIDE_WITH_OWNER) )
|
||||
return false;
|
||||
#else
|
||||
// don't clip against own missiles
|
||||
if ( pEntTouch->GetOwnerEntity() == pEntPass )
|
||||
return false;
|
||||
@@ -226,6 +235,7 @@ bool PassServerEntityFilter( const IHandleEntity *pTouch, const IHandleEntity *p
|
||||
// don't clip against owner
|
||||
if ( pEntPass->GetOwnerEntity() == pEntTouch )
|
||||
return false;
|
||||
#endif
|
||||
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user