Page 1 of 1

message: Trying to store id = 0 statically but block...

Posted: Thu Oct 17, 2019 08:25
by Hume2
My server logs are full of messages such as:
2019-10-17 06:04:20: WARNING[Server]: ServerEnv: Trying to store id = 0 statically but block (-233,0,349) already contains 64 objects.
I have tens of thousands of these in my logs. Does anyone have an idea what it actually means and what it is caused by?

Re: message: Trying to store id = 0 statically but block...

Posted: Thu Oct 17, 2019 08:31
by duane
Hume2 wrote:My server logs are full of messages such as:
2019-10-17 06:04:20: WARNING[Server]: ServerEnv: Trying to store id = 0 statically but block (-233,0,349) already contains 64 objects.
I have tens of thousands of these in my logs. Does anyone have an idea what it actually means and what it is caused by?
https://github.com/minetest/minetest/bl ... .cpp#L2058

There are too many loose objects in that block. I generally get these from falling objects, usually because I made a chunk full of unsupported sand. : )

Re: message: Trying to store id = 0 statically but block...

Posted: Thu Oct 17, 2019 11:23
by Festus1965
too options aout of ...
* higher settings in minetest.conf
* use /clearobjects quick (but also loose als animals)

Re: message: Trying to store id = 0 statically but block...

Posted: Thu Oct 17, 2019 12:40
by Sokomine
There are a number of candidates: People breeding petz (some can multiply fast), shops (each up to 4 entities afaik), item frames..falling nodes like sand and gravel (as duane mentioned) are also possible. Mining is fast on Tunnelers Abyss. Some of those sand and gravel nodes never turn back into nodes and are not picked up by players either.

Re: message: Trying to store id = 0 statically but block...

Posted: Thu Oct 17, 2019 12:48
by Hume2
Thank you all for ideas. At least I'm sure what it means.