PurpurMC / Purpur

Purpur is a drop-in replacement for Paper servers designed for configurability, and new fun and exciting gameplay features.
https://purpurmc.org
MIT License
2.05k stars 364 forks source link

Suggestion: Don't load/generate chunks outside of the worldborder #270

Closed ghost closed 3 years ago

ghost commented 3 years ago

If it's possible a option to have any chunks that are outside of the worldborder not load or generate.

ChiboYen commented 3 years ago

You could just set a generous buffer zone around the worldborder that's pre-generated if you don't want the border to be unsightly

pop4959 commented 3 years ago

Perhaps a better request: "Don't render tiles for chunks outside of a region." Plugins like BlueMap have this feature, where you can specify minimum and maximum bounding coordinates.

Preventing chunk loading itself is typically something that a mapping plugin like Pl3xMap wouldn't handle. Usually you can also handle this yourself by leaving some buffer space outside of your world border (e.g. if your world border is at 10,000, generate to 10,200; just past the render distance to make it look clean) or using a void generator plugin to ensure that any chunks that do generate aren't populated and thus won't display on the map.