From 079ab21ba7631a5e8bd30ab7ff7143dc669522d9 Mon Sep 17 00:00:00 2001 From: Night Owl Date: Mon, 31 Jul 2017 14:42:10 +0500 Subject: [PATCH] Fix client build. --- cl_dll/hl/hl_baseentity.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cl_dll/hl/hl_baseentity.cpp b/cl_dll/hl/hl_baseentity.cpp index 38978f6a..ba548046 100644 --- a/cl_dll/hl/hl_baseentity.cpp +++ b/cl_dll/hl/hl_baseentity.cpp @@ -237,6 +237,7 @@ int CBaseMonster::TakeHealth(float flHealth, int bitsDamageType) { return 0; } int CBaseMonster::TakeDamage( entvars_t *pevInflictor, entvars_t *pevAttacker, float flDamage, int bitsDamageType ) { return 0; } int CBaseMonster::Restore( class CRestore & ) { return 1; } int CBaseMonster::Save( class CSave & ) { return 1; } +BOOL CBaseMonster::ShouldGibMonster( int iGib ){ return 1; } int TrainSpeed( int iSpeed, int iMax ) { return 0; } void CBasePlayer::DeathSound( void ) { } @@ -303,6 +304,7 @@ int CBasePlayer::GiveAmmo( int iCount, const char *szName, int iMax ) { return 0 void CBasePlayer::AddPoints( int score, BOOL bAllowNegativeScore ) { } void CBasePlayer::AddPointsToTeam( int score, BOOL bAllowNegativeScore ) { } +BOOL IsCurrentMap( const char* mapname ){ return 1; } void ClearMultiDamage( void ) { } void ApplyMultiDamage( entvars_t *pevInflictor, entvars_t *pevAttacker ) { } void AddMultiDamage( entvars_t *pevInflictor, CBaseEntity *pEntity, float flDamage, int bitsDamageType) { }