···44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6677+### [1.3.2]
88+- Added Traditional Chinese (Hong Kong) translations. (Thanks to [hugoalh](https://github.com/hugoalh))
99+- Updated Traditional Chinese (Taiwan) and Simplified Chinese translations. (Thanks to [hugoalh](https://github.com/hugoalh))
1010+- Fixed a bug which caused `/back` locations to persist when in single player and joining a different world.
1111+712### [1.3.1]
813- Updated Russian translations (Thanks to [rfin0](https://github.com/rfin0)!)
914- Changed the text color to red when running `/delhome` and the home isn't found. This is now consistent with `/delwarp`
+1
README.md
···4747- [ ] Create a config to add any delays and disable commands, with commands for operators in game
4848- [ ] Add a perm system
4949- [ ] Optimize the translation strings (They are getting out of hand)
5050+- [ ] Potentially setup a better translation system (Maybe I will self-host texterify)
5051- [x] Find a way to combine the mod loader specific jars into one
5152- [x] Json Storage automatic updater & cleaner
5253- [x] Modify /back to check if the location is safe and automatically choose a nearby location that is safe
···3434 CONFIG_DIR = Paths.get(System.getProperty("user.dir")).resolve("config"); // Construct the game directory path
3535 SERVER = server;
36363737- StorageManager.STORAGE = storageValidator();
3737+ StorageManager.STORAGE = storageValidator(); // Initialize the storage file
3838+ DeathLocationStorage.clearDeathLocations(); // Clear data of death locations.
38393940 // initialize commands, also allows me to easily disable any when there is a config
4041 Commands commandManager = server.getCommands();
···2626- Hungarian (hu_hu): [Martin Morningstar](https://github.com/RMI637)
2727- Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu)
2828- Russian (ru_ru): [rfin0](https://github.com/rfin0)
2929-- Traditional Chinese (zw_tw): [hugoalh](https://github.com/hugoalh), [Dicecan](https://github.com/Dicecan)
2929+- Traditional Chinese - Taiwan (zw_tw): [hugoalh](https://github.com/hugoalh), [Dicecan](https://github.com/Dicecan)
3030+- Traditional Chinese - Hong Kong (zh_hk): [Dicecan](https://github.com/Dicecan)
3031- Simplified Chinese (zh_cn): [Dicecan](https://github.com/Dicecan)
3132- Bulgarian (bg_bg): Anonymous
-2
gradle.properties
···3636# see https://projects.neoforged.net/neoforged/neoforge for new versions
3737neoforge_version=21.5.65-beta
3838neoforge_loader_version_range=[4,)
3939-# see https://projects.neoforged.net/neoforged/neogradle for new versions
4040-#NeoGradle=7.0.184
4139# see https://projects.neoforged.net/neoforged/moddevgradle for new versions
4240neoforge_moddevgradle=2.0.87
4341