diff options
Diffstat (limited to 'source/cServer.cpp')
-rw-r--r-- | source/cServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cServer.cpp b/source/cServer.cpp index 81444f8e1..d3e8e43a7 100644 --- a/source/cServer.cpp +++ b/source/cServer.cpp @@ -470,7 +470,7 @@ void cServer::ServerCommand( const char* a_Cmd ) }
if( split[0].compare( "numchunks" ) == 0 )
{
- //printf("Num loaded chunks: %i\n", cRoot::Get()->GetWorld()->GetChunks().size() );
+ printf("Num loaded chunks: %i\n", cRoot::Get()->GetWorld()->GetNumChunks() );
return;
}
if(split[0].compare("monsters") == 0 ){
|