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 2311a90 commit ec1f69c
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.1.4

* Update to support 1.21

# 2.1.3

* 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.1.3
mod_version=2.1.4
maven_group=dev.codedsakura.blossom
mod_slug=BlossomBack
archives_base_name=blossom-back
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 @@ -14,7 +14,7 @@ public class ServerWorldSerializer implements JsonSerializer<ServerWorld>, JsonD

@Override
public ServerWorld deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) throws JsonParseException {
return server.getWorld(RegistryKey.of(RegistryKeys.WORLD, new Identifier(jsonElement.getAsString())));
return server.getWorld(RegistryKey.of(RegistryKeys.WORLD, Identifier.of(jsonElement.getAsString())));
}

@Override
Expand Down

0 comments on commit ec1f69c

Please sign in to comment.