Final versionless commit

Commited final couple of cpp files.
This commit is contained in:
whoozzem 2013-09-21 17:00:20 +01:00
parent 69250c2b36
commit 911a96729c
2 changed files with 5 additions and 5 deletions

View file

@ -64,10 +64,10 @@ LINK_ENTITY_TO_CLASS(info_player_deathmatch,CBaseDMStart);
LINK_ENTITY_TO_CLASS(info_player_start,CPointEntity);
LINK_ENTITY_TO_CLASS(info_landmark,CPointEntity);
#ifdef Seco7_ENABLE_MAP_SPECIFIC_PLAYER_MODEL_OVERRIDES
//4WH - Information: Allow us to create an info_switchmodel entity.
#ifdef SecobMod___ENABLE_MAP_SPECIFIC_PLAYER_MODEL_OVERRIDES
//SecobMod__Information Allow us to create an info_switchmodel entity.
LINK_ENTITY_TO_CLASS(info_switchmodel,CPointEntity);
#endif //Seco7_ENABLE_MAP_SPECIFIC_PLAYER_MODEL_OVERRIDES
#endif //SecobMod___ENABLE_MAP_SPECIFIC_PLAYER_MODEL_OVERRIDES
bool CBaseDMStart::IsTriggered( CBaseEntity *pEntity )
{

View file

@ -26,7 +26,7 @@ CBaseEntity* MoveToRandomSpot( CBaseEntity *pEnt )
{
if ( pEnt )
{
#ifdef Seco7_Enable_Fixed_Multiplayer_AI
#ifdef SecobMod__Enable_Fixed_Multiplayer_AI
UTIL_SetOrigin( pEnt, GetRandomSpot() );
#else
CBasePlayer *pLocalPlayer = UTIL_GetLocalPlayer();
@ -37,7 +37,7 @@ CBaseEntity* MoveToRandomSpot( CBaseEntity *pEnt )
UTIL_SetOrigin( pEnt, GetRandomSpot() );
}
#endif //Seco7_Enable_Fixed_Multiplayer_AI
#endif //SecobMod__Enable_Fixed_Multiplayer_AI
}
return pEnt;