···55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7788-### [v1.2.0] WIP!
88+### [v1.2.0]
99- Added the following warp related commands: `/warp` `/setwarp` `/delwarp` `/renamewarp` and `/warps`
1010+- Added `/worldspawn`
1011- Improved error handling and error messages a lot, this will make bug reporting (and fixing) a lot easier since it says on what command it fails, and it also gives a stack trace.
1112- Fixed some small things which may cause errors.
1212-- Improved code of some commands to make them more sane and readable
1313-- Modified storage code to make it more sane
1313+- Improved code of some commands to make them more sane and readable.
1414+- Modified storage code to make it more sane.
1415- Fixed bug with /home when in a diff dimension. (apparently I did this for /back already but forgot to add it to /home)
1515-- Added Russian Translations (Thanks to [rfin0](https://github.com/rfin0))
1616+- Added Russian Translations (Thanks to [rfin0](https://github.com/rfin0)!)
16171718### [v1.1.3]
1819- Added support for 1.21.2 - 1.21.3
19202021### [v1.1.2]
2121-- Added Italian Translations (Thanks to [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu)
2222+- Added Italian Translations (Thanks to [Vlad Andrei Morariu](https://github.com/VladAndreiMorariu)!)
22232324### [v1.1.1]
2425- Added support for 1.21
···3435- Added a CHANGELOG.md
3536- Added Tpa Accept/Deny Suggestions
3637- Added Dutch translations
3737-- Added Hungarian translations (Thanks to [Martin Morningstar](https://github.com/RMI637))
3838+- Added Hungarian translations (Thanks to [Martin Morningstar](https://github.com/RMI637)!)
38393940#### Changed
4041- Limited the requests a player can do to the same player to 1
···6566#### Changed
6667- Changed mappings to Mojang.
6768- Cleaned up commands code
6868-- Changed build files to support multiple mod loader
6969+- Changed build files to support multiple mod loaders
697070717172### [v1.0.2]
+5-1
README.md
···6677#### Currently available commands:
8899+- `/worldspawn [<Disable Safety>]` - Teleports you to the world spawn (in the overworld), if given true it will not do safety checks
910- `/back [<Disable Safety>]` - Teleports you to the location where you last died, if given true it will not do safety checks
1011<br><br>
1112 **Homes are player specific locations that only that player can teleport to**
···35363637#### Planned commands:
3738- [ ] `/wild` - Teleports you to a random location in the Overworld
3838-- [ ] `/worldspawn` - Teleports you to the worldspawn
3939+- [x] `/worldspawn` - Teleports you to the worldspawn
3940- [ ] `/spawn <dimension>` - Teleports you to your spawnpoint in a dimension, defaults to your current dimension
40414142#### Improvements:
4343+- [ ] Look into changing the mod into the more safe and sane kotlin (I love java)
4444+- [ ] Find a way to combine the mod loader specific jars into one
4545+- [ ] Find the easiest way to backport the mod to older version (help)
4246- [ ] Create a config to add any delays and disable commands, with commands for operators in game
4347- [ ] Add a perm system
4448- [x] Json Storage automatic updater & cleaner
···11{
22 "commands.teleport_commands.back.go": "Indulás vissza",
33 "commands.teleport_commands.back.same": "Vissza",
44- "commands.teleport_commands.back.noLocation": "Nem található a koordináta",
44+55+ "commands.teleport_commands.worldspawn.go": "Going To The Worldspawn",
66+ "commands.teleport_commands.worldspawn.same": "Already At Worldspawn",
5768 "commands.teleport_commands.home.set": "Otthon beállítása",
79 "commands.teleport_commands.home.setError": "Hiba történt az otthon beállításával!",
···5860 "commands.teleport_commands.common.rename": "[Átnevezés]",
5961 "commands.teleport_commands.common.delete": "[Törlés]",
6062 "commands.teleport_commands.common.default": "(Alap)",
6161- "commands.teleport_commands.common.renameExists": "A név már létezik!"
6363+ "commands.teleport_commands.common.renameExists": "A név már létezik!",
6464+ "commands.teleport_commands.common.noLocation": "Nem található a koordináta"
6265}
···11{
22 "commands.teleport_commands.back.go": "Возвращение назад",
33 "commands.teleport_commands.back.same": "Уже на месте",
44- "commands.teleport_commands.back.noLocation": "Местоположение не найдено!",
44+55+ "commands.teleport_commands.worldspawn.go": "Going To The Worldspawn",
66+ "commands.teleport_commands.worldspawn.same": "Already At Worldspawn",
5768 "commands.teleport_commands.home.set": "Дом установлен",
79 "commands.teleport_commands.home.setError": "Ошибка установки дома!",
···5860 "commands.teleport_commands.common.rename": "[Переименовать]",
5961 "commands.teleport_commands.common.delete": "[Удалить]",
6062 "commands.teleport_commands.common.default": "(По умолчанию)",
6161- "commands.teleport_commands.common.renameExists": "Это имя уже занято!"
6363+ "commands.teleport_commands.common.renameExists": "Это имя уже занято!",
6464+ "commands.teleport_commands.common.noLocation": "Местоположение не найдено!"
6265}
+1-1
gradle.properties
···22# Every field you add must be added to the root build.gradle expandProps map.
3344# Project
55-version=1.1.3
55+version=1.2.0
66group=dev.mrsnowy.teleport_commands
77java_version=21
88