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] v1.1.2

This release added Italian translations (Thanks to [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu)

MrSn0wy e0134825 0e243363

+7 -4
+4 -1
CHANGELOG.md
··· 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 + ### [v1.1.2] 9 + - Added Italian Translations (Thanks to [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu) 10 + 11 + 8 12 ### [v1.1.1] 9 13 - Added support for 1.21 10 14 - Changed Java version to `21` 11 - 12 15 13 16 ### [v1.1.0] 14 17
-1
common/src/main/java/dev/mrsnowy/teleport_commands/TeleportCommands.java
··· 102 102 deathLocation.addProperty("z", 0); 103 103 deathLocation.addProperty("world", ""); 104 104 105 - 106 105 JsonArray homes = new JsonArray(); 107 106 108 107 if (player.has("Homes") && player.get("Homes").isJsonArray() ) {
+2 -1
common/src/main/resources/assets/teleport_commands/lang/translations.md
··· 23 23 #### Credits 24 24 - English (en_us): [Mr. Snowy](https://github.com/MrSn0wy) 25 25 - Dutch (nl_nl): [Mr. Snowy](https://github.com/MrSn0wy) 26 - - Hungarian (hu_hu): [Martin Morningstar](https://github.com/RMI637) 26 + - Hungarian (hu_hu): [Martin Morningstar](https://github.com/RMI637) 27 + - Italian (it_it): [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu)
+1 -1
gradle.properties
··· 2 2 # Every field you add must be added to the root build.gradle expandProps map. 3 3 4 4 # Project 5 - version=1.1.1 5 + version=1.1.2 6 6 group=dev.mrsnowy.teleport_commands 7 7 java_version=21 8 8