Skip to content

Commit

Permalink
Fix errors in MI compat recipes (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
Technici4n authored Jul 12, 2024
1 parent 0ea3c77 commit c1e66bc
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ curseforge_project = 552758
modrinth_project = fMpvLrnF

# Dependencies
neoforge_version=21.0.24-beta
neoforge_version=21.0.37-beta

#########################################################
# Parchment #
#########################################################
neoForge.parchment.minecraftVersion=1.20.6
neoForge.parchment.mappingsVersion=2024.06.16
neoForge.parchment.minecraftVersion=1.21
neoForge.parchment.mappingsVersion=2024.07.07

# In-dev runtime mods
rei_version=16.0.729

jei_minecraft_version=1.21
jei_version=19.0.0.1
jei_version=19.5.0.30

emi_minecraft_version=1.21
emi_version=1.1.7
emi_version=1.1.10

# Set to emi, jei, or rei to pick which tooltip mod gets picked at runtime
# for the dev environment.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"result": {
"item": "moderndynamics:ev_cable",
"id": "moderndynamics:ev_cable",
"count": 4
},
"neoforge:conditions": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
},
"result": {
"item": "modern_industrialization:annealed_copper_cable"
"id": "modern_industrialization:annealed_copper_cable"
},
"neoforge:conditions": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"result": {
"item": "moderndynamics:hv_cable",
"id": "moderndynamics:hv_cable",
"count": 4
},
"neoforge:conditions": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
},
"result": {
"item": "modern_industrialization:aluminum_cable"
"id": "modern_industrialization:aluminum_cable"
},
"neoforge:conditions": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"result": {
"item": "moderndynamics:lv_cable",
"id": "moderndynamics:lv_cable",
"count": 4
},
"neoforge:conditions": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
},
"result": {
"item": "modern_industrialization:tin_cable"
"id": "modern_industrialization:tin_cable"
},
"neoforge:conditions": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"result": {
"item": "moderndynamics:mv_cable",
"id": "moderndynamics:mv_cable",
"count": 4
},
"neoforge:conditions": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
},
"result": {
"item": "modern_industrialization:electrum_cable"
"id": "modern_industrialization:electrum_cable"
},
"neoforge:conditions": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"result": {
"item": "moderndynamics:superconductor_cable",
"id": "moderndynamics:superconductor_cable",
"count": 4
},
"neoforge:conditions": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
},
"result": {
"item": "modern_industrialization:superconductor_cable"
"id": "modern_industrialization:superconductor_cable"
},
"neoforge:conditions": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private void generateMiCableRecipes(String cableName, String miCable, CachedOutp
ImmutableMap.of(
"item", miCableItemId)),
"result", ImmutableMap.of(
"item", mdCableItemId,
"id", mdCableItemId,
"count", 4)),
condition);

Expand All @@ -171,7 +171,7 @@ private void generateMiCableRecipes(String cableName, String miCable, CachedOutp
"key", ImmutableMap.of(
"c", ImmutableMap.of("item", mdCableItemId)),
"result", ImmutableMap.of(
"item", miCableItemId)),
"id", miCableItemId)),
condition);
}

Expand Down

0 comments on commit c1e66bc

Please sign in to comment.