Increase Limit for "suspiciously large amount" to 300 Take 2

This commit is contained in:
sfan5 2012-07-23 17:19:22 +02:00
parent 7fd0d66b4f
commit b2ba7e0aaa
1 changed files with 2 additions and 2 deletions

View File

@ -1740,12 +1740,12 @@ void ServerEnvironment::deactivateFarObjects(bool force_delete)
if(block)
{
if(block->m_static_objects.m_stored.size() >= 49){
if(block->m_static_objects.m_stored.size() >= 300){
errorstream<<"ServerEnv: Trying to store id="<<obj->getId()
<<" statically but block "<<PP(blockpos)
<<" already contains "
<<block->m_static_objects.m_stored.size()
<<" (over 49) objects."
<<" (over 299) objects."
<<" Forcing delete."<<std::endl;
force_delete = true;
} else {