A simple UHC plugin!
- Moving configurable world border
- Reset world to first day
- Disable player passive regeneration
- Reset player stats and inventory
- Player health displayed in player list
- Disable totem of undying
- Disable villager damage and trades
- Removed suspicious stew recipe
- Block new players from joining after a game has started
/uhc start
- Starts the game
uhc.admin
- Allows players to use administrative commands (Default: op)
- First, pull any changes from
main
to make sure you're up-to-date - Create a branch from
main
- Give your branch a name that describes your change (e.g. add-scoreboard)
- Focus on one change per branch
- Keep your commits small, and write descriptive commit messages
- When you're ready, create a pull request to
main
with a descriptive title, and listing any changes made in its description- Link any issues that your pull request is related to as well
Create scoreboard for total points
ADDED - Scoreboard displayed in-game at game end
CHANGED - Updated `StorageManager` class to persist scoreboard data
After the pull request has been reviewed, approved, and passes all automated checks, it will be merged into main.
Thanks to Gradle, building locally is easy no matter what platform you're on. Simply run the following command:
./gradlew build
gradlew.bat build
This build step will also run all checks, making sure your code is clean.