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.1

Added support for Minecraft 1.21
:3

+13 -10
+1 -1
.github/workflows/build.yml
··· 12 12 matrix: 13 13 # Use these Java versions 14 14 java: 15 - - 17 # Currently min for minecraft 15 + - 21 # Currently min for minecraft 16 16 runs-on: ubuntu-22.04 17 17 steps: 18 18 - name: checkout repository
+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.1] 9 + - Added support for 1.21 10 + - Changed Java version to `21` 11 + 8 12 9 13 ### [v1.1.0] 10 14 ··· 38 42 - Replaced `Player_UUID` in the storage json to `UUID` 39 43 - Changed Death location coords in the storage json from `double` to `int` 40 44 - Changed Home coords in the storage json from `double` to `int` 41 - - 42 45 43 46 ### [v1.0.5] 44 47
+2 -2
README.md
··· 2 2 3 3 A Minecraft server-side mod that adds various teleportation related commands, like /home /tpa and /back 4 4 5 - Here is the [Changelog](CHANGELOG.md) 5 + Here is the [Changelog](https://github.com/MrSn0wy/TeleportCommands/blob/main/CHANGELOG.md) 6 6 7 7 #### Currently available commands: 8 8 ··· 32 32 - [ ] `/spawn <dimension>` - Teleports you to your spawnpoint in a dimension, defaults to your current dimension 33 33 34 34 #### Improvements: 35 - - [ ] Create a config to add any delays and disable commands, also add commands for operators in game 35 + - [ ] Create a config to add any delays and disable commands, with commands for operators in game 36 36 - [ ] Add a perm system 37 37 - [x] Json Storage automatic updater & cleaner 38 38 - [x] Modify /back to check if the location is safe and automatically choose a nearby location that is safe
+5 -5
gradle.properties
··· 4 4 # Project 5 5 version=1.1.0 6 6 group=dev.mrsnowy.teleport_commands 7 - java_version=17 7 + java_version=21 8 8 9 9 # Common 10 - minecraft_version=1.20.4 10 + minecraft_version=1.21 11 11 mod_name=Teleport Commands 12 12 mod_author=Mr. Snowy 13 13 mod_id=teleport_commands 14 14 license=MIT 15 15 credits=Mr. Snowy 16 16 description=A server-side mod that adds various teleportation related commands. 17 - minecraft_version_range=[1.20.4, 1.21] 17 + minecraft_version_range=[1.21] 18 18 19 19 # Fabric 20 - fabric_loader_version=0.15.7 20 + fabric_loader_version=0.15.11 21 21 #fabric_api=0.97.0+1.20.4 22 22 fabric_loom=1.6-SNAPSHOT 23 23 ··· 28 28 29 29 30 30 # NeoForge 31 - neoforge_version=20.4.234 31 + neoforge_version=21.0.0-beta 32 32 neoforge_loader_version_range=[2,) 33 33 34 34 # Gradle
+1 -1
neoforge/build.gradle
··· 1 1 plugins { 2 2 id 'multiloader-loader' 3 - id 'net.neoforged.gradle.userdev' version '7.0.107' 3 + id 'net.neoforged.gradle.userdev' version '7.0.142' 4 4 } 5 5 6 6 // Automatically enable neoforge AccessTransformers if the file exists