mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-30 20:14:23 +00:00
Pumpkin World
Contains everything World related for example
- Loading Chunks (Anvil Format)
- Generating Chunks
- Loading Blocks/Items
Porting
When updating your Minecraft server to a newer version, you typically need to replace the files in the assets directory to ensure compatibility with the new version's resources. Thankfully, vanilla Minecraft provides a way to extract these updated assets directly from the server JAR file itself.
- Download the latest Minecraft server JAR file for the version you want to upgrade to.
- Run
java -DbundlerMainClass=net.minecraft.data.Main -jar <minecraft_server>.jar --reports. - This command will create a new folder named
reportsin the same directory as the server JAR. This folder contains the updated "assets" directory for the new version. - Copy the assets folder from the reports folder and replace the existing assets directory within your server directory.
For details see https://wiki.vg/Data_Generators