From ff4de2b5c84d3d1e9a62daf4620c9188fc5c4fdb Mon Sep 17 00:00:00 2001 From: Andrey Akhmichin Date: Sun, 22 Nov 2020 17:23:30 +0500 Subject: [PATCH] Fix https://github.com/FWGS/hlsdk-xash3d/issues/128 --- dlls/houndeye.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dlls/houndeye.cpp b/dlls/houndeye.cpp index 6f0ceba3..81965dde 100644 --- a/dlls/houndeye.cpp +++ b/dlls/houndeye.cpp @@ -100,6 +100,7 @@ public: Schedule_t *GetScheduleOfType( int Type ); Schedule_t *GetSchedule( void ); int IRelationship(CBaseEntity *pTarget); + BOOL HasHumanGibs( void ); int Save( CSave &save ); int Restore( CRestore &restore ); @@ -1230,3 +1231,9 @@ int CHoundeye::IRelationship( CBaseEntity *pTarget ) return CSquadMonster::IRelationship( pTarget ); } + +BOOL CHoundeye::HasHumanGibs( void ) +{ + return TRUE; +} +