diff --git a/mp/src/game/server/subs.cpp b/mp/src/game/server/subs.cpp index 83c2b39d8..2cf065036 100644 --- a/mp/src/game/server/subs.cpp +++ b/mp/src/game/server/subs.cpp @@ -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 ) { diff --git a/mp/src/game/server/test_stressentities.cpp b/mp/src/game/server/test_stressentities.cpp index 1e3d98496..2465d85be 100644 --- a/mp/src/game/server/test_stressentities.cpp +++ b/mp/src/game/server/test_stressentities.cpp @@ -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;