From 993bdab1e8c5d61f25c549c2177e2ad2ef12bd67 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 18 Feb 2012 19:20:05 +0000 Subject: [PATCH] Fixed previous commit: forgot to remove a debugging setting git-svn-id: http://mc-server.googlecode.com/svn/trunk@294 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cWorld.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/cWorld.cpp b/source/cWorld.cpp index 2cde3ac7b..41b9c5068 100644 --- a/source/cWorld.cpp +++ b/source/cWorld.cpp @@ -431,9 +431,7 @@ void cWorld::InitializeSpawn() int ChunkX = 0, ChunkY = 0, ChunkZ = 0; BlockToChunk( (int)m_SpawnX, (int)m_SpawnY, (int)m_SpawnZ, ChunkX, ChunkY, ChunkZ ); - // DEBUG: - // int ViewDist = 20; // Always prepare an area 20 chunks across, no matter what the actual cClientHandle::VIEWDISTANCE is - int ViewDist = 5; // Always prepare an area 20 chunks across, no matter what the actual cClientHandle::VIEWDISTANCE is + int ViewDist = 20; // Always prepare an area 20 chunks across, no matter what the actual cClientHandle::VIEWDISTANCE is LOG("Preparing spawn area in world \"%s\"", m_WorldName.c_str()); for (int x = 0; x < ViewDist; x++)