game: add IsMannVsMachineMode stub method, fix rediclaration

This commit is contained in:
SanyaSho 2022-08-10 22:27:40 +03:00
parent ac983a0d93
commit 8d9c7be0ff

View File

@ -83,7 +83,6 @@ ConVar tf_birthday( "tf_birthday", "0", FCVAR_NOTIFY | FCVAR_REPLICATED );
#ifdef GAME_DLL
// TF overrides the default value of this convar
ConVar mp_waitingforplayers_time( "mp_waitingforplayers_time", (IsX360()?"15":"30"), FCVAR_GAMEDLL | FCVAR_DEVELOPMENTONLY, "WaitingForPlayers time length in seconds" );
ConVar tf_gravetalk( "tf_gravetalk", "1", FCVAR_NOTIFY, "Allows living players to hear dead players using text/voice chat." );
ConVar tf_spectalk( "tf_spectalk", "1", FCVAR_NOTIFY, "Allows living players to hear spectators using text chat." );
#endif
@ -2842,6 +2841,14 @@ bool CTFGameRules::IsBirthday( void )
return ( m_iBirthdayMode == BIRTHDAY_ON );
}
//-----------------------------------------------------------------------------
// Purpose: FIXME: stub
//-----------------------------------------------------------------------------
bool CTFGameRules::IsMannVsMachineMode( void )
{
return false;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------