upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
+2 -8
View File
@@ -1,4 +1,4 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
@@ -227,9 +227,6 @@ int GlobalEntity_GetNumGlobals( void )
CON_COMMAND(dump_globals, "Dump all global entities/states")
{
if ( !UTIL_IsCommandIssuedByServerAdmin() )
return;
gGlobalState.DumpGlobals();
}
@@ -237,7 +234,7 @@ CON_COMMAND(dump_globals, "Dump all global entities/states")
//#ifdef _DEBUG
void CGlobalState::DumpGlobals( void )
{
static const char *estates[] = { "Off", "On", "Dead" };
static char *estates[] = { "Off", "On", "Dead" };
Msg( "-- Globals --\n" );
for ( int i = 0; i < m_list.Count(); i++ )
@@ -318,8 +315,5 @@ void ShowServerGameTime()
CON_COMMAND(server_game_time, "Gives the game time in seconds (server's curtime)")
{
if ( !UTIL_IsCommandIssuedByServerAdmin() )
return;
ShowServerGameTime();
}