mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Changes to static object storage limit and error message
Move static object storage force-delete message from errorstream to warningstream. Increase 'max objects per block' setting to 64. Add missing spaces in warning code.
This commit is contained in:
parent
c7d569b863
commit
63a3bb229a
4 changed files with 10 additions and 10 deletions
|
@ -2175,13 +2175,13 @@ void ServerEnvironment::deactivateFarObjects(bool force_delete)
|
|||
|
||||
if(block)
|
||||
{
|
||||
if(block->m_static_objects.m_stored.size() >= g_settings->getU16("max_objects_per_block")){
|
||||
errorstream<<"ServerEnv: Trying to store id="<<obj->getId()
|
||||
<<" statically but block "<<PP(blockpos)
|
||||
<<" already contains "
|
||||
<<block->m_static_objects.m_stored.size()
|
||||
<<" objects."
|
||||
<<" Forcing delete."<<std::endl;
|
||||
if (block->m_static_objects.m_stored.size() >= g_settings->getU16("max_objects_per_block")) {
|
||||
warningstream << "ServerEnv: Trying to store id = " << obj->getId()
|
||||
<< " statically but block " << PP(blockpos)
|
||||
<< " already contains "
|
||||
<< block->m_static_objects.m_stored.size()
|
||||
<< " objects."
|
||||
<< " Forcing delete." << std::endl;
|
||||
force_delete = true;
|
||||
} else {
|
||||
// If static counterpart already exists in target block,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue