wg21655
wg21655
How can I test this is working correctly? I surrounded an entity but can still see it.
https://github.com/PaperMC/Folia/blob/ver/1.21.8/folia-server/minecraft-patches/features/0001-Region-Threading-Base.patch#L8697-L8698 Maybe because this change causes the auto save to no longer work
My temporary solution is to revert the line change mentioned above and add the following to the top of `saveIncrementally()` ``` if (doFull) { this.getChunkSource().getDataStorage().scheduleSave(); return; } ``` Similarly, only...