Pregen LODs of server plugin in singleplayer
Hi, am I correct in saying that the DH Bukkit plugin keeps the LOD data in DHSupport/data.sqlite?
I'd like to pregen the LODs from a single player version of the server world so that there's no need for the server to load vanilla chunks. I have multiverse however, so I'm not too sure how that would interact with the data.sqlite that's currently present on the server. Any recommendations/steps?
5 Replies
/lodstored
Single Player:
- Overworld:
.minecraft/saves/WORLD_NAME/data/DistantHorizons.sqlite
- Nether: .minecraft/saves/WORLD_NAME/DIM-1/data/DistantHorizons.sqlite
- End: .minecraft/saves/WORLD_NAME/DIM1/data/DistantHorizons.sqlite
- Custom Dimensions: .minecraft/saves/WORLD_NAME/DIMENSION_FOLDER/data/DistantHorizons.sqlite
Multiplayer:
- .minecraft/Distant_Horizons_server_data/SERVER_NAME/
Server Mod
- Overworld: SERVER_FOLDER/world/data/DistantHorizons.sqlite
- Nether: SERVER_FOLDER/world/DIM-1/data/DistantHorizons.sqlite
- End: SERVER_FOLDER/world/DIM1/data/DistantHorizons.sqlite
- Custom Dimensions: SERVER_FOLDER/world/DIMENSION_FOLDER/data/DistantHorizons.sqlite
Server Plugin
All dimensions in one file: SERVER_FOLDER/plugins/DHSupport/data.sqlite
You will need to somehow combine the dimensions
Solution
The databases are not compatible
Ah gotcha! Thanks for the info!