Skip to content

Commit

Permalink
update to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
CodedSakura committed Jun 18, 2024
1 parent 0852ff8 commit 02dd520
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.0.8

* Update to support 1.21

# 2.0.7

* Update to support 1.20.6
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
org.gradle.jvmargs=-Xmx1G

# Mod Properties
mod_version=2.0.7
mod_version=2.0.8
maven_group=dev.codedsakura.blossom
mod_slug=BlossomWarps
archives_base_name=blossom-warps
supported_versions=1.20.6
supported_versions=1.21

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.20.6
yarn_mappings=build.1
minecraft_version=1.21
yarn_mappings=build.2
loader_version=0.15.11

# Dependencies
fabric_version=0.97.8
blossomlib_version=2.5.7
fabric_version=0.100.1
blossomlib_version=2.5.8
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public String toString() {

TeleportUtils.TeleportDestination toDestination(MinecraftServer server) {
return new TeleportUtils.TeleportDestination(
server.getWorld(RegistryKey.of(RegistryKeys.WORLD, new Identifier(this.world))),
server.getWorld(RegistryKey.of(RegistryKeys.WORLD, Identifier.of(this.world))),
x, y, z, yaw, pitch
);
}
Expand Down

0 comments on commit 02dd520

Please sign in to comment.