mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 20:32:34 +00:00
* Added CSoundEffect packet * Added sound macro added a macro that turns sound namespaces to the sounds id * added CEntitySoundEffect * updated id to i32 * Added sound effects to pvp * Added sweeping and particles * Added I-Frames to living entity * Refactored combat split up the combat handling into multiple functions and a new combat module * use new packet macro * updated json files * fixed attacking * use builtin clamp
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