Files
Pumpkin/pumpkin-world
Alvsch 7de3e0e995 Improved pvp (#173)
* 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
2024-10-24 17:49:23 +02:00
..
2024-10-24 17:49:23 +02:00
2024-09-12 12:33:33 +02: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.

  1. Download the latest Minecraft server JAR file for the version you want to upgrade to.
  2. Run java -DbundlerMainClass=net.minecraft.data.Main -jar <minecraft_server>.jar --reports.
  3. This command will create a new folder named reports in the same directory as the server JAR. This folder contains the updated "assets" directory for the new version.
  4. 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