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.

Added a Changelog

+45 -2
+43
CHANGELOG.md
··· 1 + # Changelog 2 + 3 + All notable changes to this project will be documented in this file. 4 + 5 + The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), 6 + and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 + 8 + ### [Unreleased] 9 + 10 + #### Added 11 + - Added completely server-side translation system (UNLIKE MOJANG'S SYSTEM WHICH IS CLIENT SIDE) 12 + - Added quilt support 13 + - Added CHANGELOG.md 14 + 15 + #### Changed 16 + - Improved command messages and colors 17 + - improved performance by changing the death event to be player specific (not all entities) 18 + - Replaced all loader specific events with Mixins 19 + 20 + #### Removed 21 + - Removed Sources and Javadoc files to improve build speed 22 + - Removed Fabric API dependency 23 + 24 + 25 + ### [v1.0.5] 26 + 27 + #### Added 28 + - Added support for NeoForge 29 + 30 + #### Changed 31 + - Changed mappings to Mojang. 32 + - Cleaned up commands code 33 + - Changed build files to support multiple mod loader 34 + 35 + 36 + ### [v1.0.2] 37 + 38 + #### Added 39 + - Added project icon 40 + - Added project description 41 + 42 + #### Changed 43 + - Changed the array for tpa to only save the player's uuid (not the whole entity lmao)
+2 -2
README.md
··· 1 1 # Teleport Commands <img src="https://raw.githubusercontent.com/MrSn0wy/TeleportCommands/main/common/src/main/resources/teleport_commands.png" alt="Teleport Commands Logo" width="30"/> 2 2 3 3 4 - A Minecraft Fabric and NeoForge server-side mod that adds various teleportation related commands, like /home /tpa and /back 4 + A Minecraft server-side mod that adds various teleportation related commands, like /home /tpa and /back 5 5 6 6 ### This mod is still in beta, if there are any problems then let me know! 7 7 ··· 47 47 #### You can create a Translation file so other people can use the mod in their native language 48 48 1. Clone the repository 49 49 2. Go to `common/src/main/resources/assets/teleport_commands/lang/` 50 - 3. Go to [here](https://minecraft.wiki/w/Language) and pick the in-game locale code for the language you want to translate 50 + 3. Go [here](https://minecraft.wiki/w/Language) and pick the in-game locale code for the language you want to translate 51 51 4. Copy `en_us.toml` and paste it in a new file called `[in-game locale code here].toml` 52 52 5. Translate the file 53 53 6. Submit a pull request with your translation :D!