Skip to content

Commit

Permalink
1.19.4 (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
DrexHD authored Apr 28, 2023
1 parent 7a9f353 commit aacb871
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.19.3-rc1
yarn_mappings=1.19.3-rc1+build.2
loader_version=0.14.11
minecraft_version=1.19.4
yarn_mappings=1.19.4+build.2
loader_version=0.14.19

#Fabric api
fabric_version=0.68.1+1.19.3
fabric_version=0.79.0+1.19.4

# Mod Properties
mod_version = 0.1.0+1.19.3
mod_version = 0.1.0+1.19.4
maven_group = eu.pb4
archives_base_name = predicate-api

2 changes: 1 addition & 1 deletion src/main/java/eu/pb4/predicate/impl/BaseCodec.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public <T> DataResult<MinecraftPredicate> decode(DynamicOps<T> ops, MapLike<T> i
if (codec != null) {
return codec.decode(ops, input);
} else {
return DataResult.error("Invalid predicate type \"" + type +"\"!");
return DataResult.error(() -> "Invalid predicate type \"" + type +"\"!");
}
});
}
Expand Down

0 comments on commit aacb871

Please sign in to comment.