* Bukkit Build Fix
* remove comments
* remove papermc repo from gradle settings
* add back gradle shasum
* fix formatting, update gradle hash
* Minestom Updated to latest version as of now 4/12/2025
Updated method names to new documentation and changed minestom versioning.
- Paper Build version was changed as I had issues building at all with the snapshot version. So it was changed to a generic version but everything still builds fine.
* Bug Fix - Entity Type was parsing a value that was incorrect and causing issues to load the world.
EntityType.fromId(Integer.parseInt(id));
to
delegate = EntityType.fromKey(id);
* Reverted changes to comply with build version requirements and avoiding pulling functionality out of a common existing function
---------
Co-authored-by: Peter Pan <peter@never.lan>
Co-authored-by: Zoë Gidiere <duplexsys@protonmail.com>
Updated `getDataFolder` to allow customization via the `terra.datafolder` system property. This ensures greater flexibility for specifying the data folder location, while maintaining the default path if the property is not set.