Skip to content

Commit

Permalink
Fix conversion recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Aug 13, 2024
1 parent f15b681 commit 35437a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]
minecraft = "1.21"
minecraft = "1.21.1"
parchment = "2024.06.23"

neoforge = "21.0.55-beta"
neoforge = "21.1.8"

fabric_loader = "0.15.11"
fabric_api = "0.100.4+1.21"
fabric_api = "0.102.1+1.21.1"

fabric_mixin = "0.13.3+mixin.0.8.5"
mixinextras = "0.3.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private synchronized void initialize() {
.forEach(tagKey -> {
var location = ResourceLocation.fromNamespaceAndPath(
ExcavatedVariants.MOD_ID,
"recipes/ore_conversion/" + tagKey.location().getNamespace() + "/" + tagKey.location().getPath() + ".json"
"recipe/ore_conversion/" + tagKey.location().getNamespace() + "/" + tagKey.location().getPath() + ".json"
);
recipeToTagMap.put(location, tagKey);
});
Expand Down

0 comments on commit 35437a1

Please sign in to comment.