A Minecraft server-side mod that adds various teleportation related commands
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[1.21.5] V1.3.2

Smoll update

MrSnowy f1d0db0b b94ac33e

+14 -4
+5
CHANGELOG.md
··· 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), 5 5 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 6 7 + ### [1.3.2] 8 + - Added Traditional Chinese (Hong Kong) translations. (Thanks to [hugoalh](https://github.com/hugoalh)) 9 + - Updated Traditional Chinese (Taiwan) and Simplified Chinese translations. (Thanks to [hugoalh](https://github.com/hugoalh)) 10 + - Fixed a bug which caused `/back` locations to persist when in single player and joining a different world. 11 + 7 12 ### [1.3.1] 8 13 - Updated Russian translations (Thanks to [rfin0](https://github.com/rfin0)!) 9 14 - Changed the text color to red when running `/delhome` and the home isn't found. This is now consistent with `/delwarp`
+1
README.md
··· 47 47 - [ ] Create a config to add any delays and disable commands, with commands for operators in game 48 48 - [ ] Add a perm system 49 49 - [ ] Optimize the translation strings (They are getting out of hand) 50 + - [ ] Potentially setup a better translation system (Maybe I will self-host texterify) 50 51 - [x] Find a way to combine the mod loader specific jars into one 51 52 - [x] Json Storage automatic updater & cleaner 52 53 - [x] Modify /back to check if the location is safe and automatically choose a nearby location that is safe
+2 -1
common/src/main/java/dev/mrsnowy/teleport_commands/TeleportCommands.java
··· 34 34 CONFIG_DIR = Paths.get(System.getProperty("user.dir")).resolve("config"); // Construct the game directory path 35 35 SERVER = server; 36 36 37 - StorageManager.STORAGE = storageValidator(); 37 + StorageManager.STORAGE = storageValidator(); // Initialize the storage file 38 + DeathLocationStorage.clearDeathLocations(); // Clear data of death locations. 38 39 39 40 // initialize commands, also allows me to easily disable any when there is a config 40 41 Commands commandManager = server.getCommands();
+4
common/src/main/java/dev/mrsnowy/teleport_commands/storage/DeathLocationStorage.java
··· 33 33 deathLocation.setWorld(world); 34 34 } 35 35 } 36 + 37 + public static void clearDeathLocations() { 38 + deathLocations.clear(); 39 + } 36 40 }
+2 -1
common/src/main/resources/assets/teleport_commands/lang/translations.md
··· 26 26 - Hungarian (hu_hu): [Martin Morningstar](https://github.com/RMI637) 27 27 - Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu) 28 28 - Russian (ru_ru): [rfin0](https://github.com/rfin0) 29 - - Traditional Chinese (zw_tw): [hugoalh](https://github.com/hugoalh), [Dicecan](https://github.com/Dicecan) 29 + - Traditional Chinese - Taiwan (zw_tw): [hugoalh](https://github.com/hugoalh), [Dicecan](https://github.com/Dicecan) 30 + - Traditional Chinese - Hong Kong (zh_hk): [Dicecan](https://github.com/Dicecan) 30 31 - Simplified Chinese (zh_cn): [Dicecan](https://github.com/Dicecan) 31 32 - Bulgarian (bg_bg): Anonymous
-2
gradle.properties
··· 36 36 # see https://projects.neoforged.net/neoforged/neoforge for new versions 37 37 neoforge_version=21.5.65-beta 38 38 neoforge_loader_version_range=[4,) 39 - # see https://projects.neoforged.net/neoforged/neogradle for new versions 40 - #NeoGradle=7.0.184 41 39 # see https://projects.neoforged.net/neoforged/moddevgradle for new versions 42 40 neoforge_moddevgradle=2.0.87 43 41