susumu0607
Refugee
When I log in, some of the base buildings have been reset. The buildings are included in the region. I don't think the reset part is out of the region.

Yep that 30k stack mod does this all the time.Have heard of stack size/forge mods causing this too.
I concur. I decommed the "MeanCloud__ForgesHold1M" forge mod I was maintaining that allowed > 30k forge items per forge item slot as it could caused various game corruption issues. I didn't see this specifically but it caused all sorts of issues. Multiple people complained about "it broke my game" and I finally was able to reproduce when someone gave me more info as it was not easy to reproduce corruption.Have heard of stack size/forge mods causing this too.
Interesting. I was not aware other "mods that caused stacking over 30k" had issues!Yep that 30k stack mod does this all the time.
I wrote up a post kinda guessing the same thingIf the stack type is a signed short then the max stack size is 32,767. Once you go over that it loops to -32,768. No idea what that would do. Technically speaking, if the devs wanted more stack size it would be trivial to use an unsigned short and allow stacks of 65,535. Go over that and it loops back to zero, so I guess you would theoretically lose the stack. They probably don't believe you need 32,000 items in a stack though, and I think that's a tad insane personally.