Andrey Akhmichin 2020-11-22 17:23:30 +05:00
parent c0dd516e5d
commit ff4de2b5c8

View File

@ -100,6 +100,7 @@ public:
Schedule_t *GetScheduleOfType( int Type ); Schedule_t *GetScheduleOfType( int Type );
Schedule_t *GetSchedule( void ); Schedule_t *GetSchedule( void );
int IRelationship(CBaseEntity *pTarget); int IRelationship(CBaseEntity *pTarget);
BOOL HasHumanGibs( void );
int Save( CSave &save ); int Save( CSave &save );
int Restore( CRestore &restore ); int Restore( CRestore &restore );
@ -1230,3 +1231,9 @@ int CHoundeye::IRelationship( CBaseEntity *pTarget )
return CSquadMonster::IRelationship( pTarget ); return CSquadMonster::IRelationship( pTarget );
} }
BOOL CHoundeye::HasHumanGibs( void )
{
return TRUE;
}