-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix mod compat recipes (including AllTheMods/ATM-8#1766)
(cherry picked from commit e12ce41)
- Loading branch information
1 parent
9fdaf03
commit 3dc2336
Showing
5 changed files
with
42 additions
and
36 deletions.
There are no files selected for viewing
18 changes: 0 additions & 18 deletions
18
...data/biggerreactors/recipes/compat/mekanism/crushing/crusher_deepslate_uranium_ingot.json
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
...resources/data/biggerreactors/recipes/compat/mekanism/crushing/crusher_uranium_chunk.json
This file was deleted.
Oops, something went wrong.
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
...ces/data/thermal/recipes/machine/biggerreactors/pulverizer_mod_deepslate_uranium_ore.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"type": "thermal:pulverizer", | ||
"conditions": [ | ||
{ | ||
"modid": "thermal_expansion", | ||
"type": "forge:mod_loaded" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "biggerreactors:deepslate_uranium_ore" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "biggerreactors:uranium_dust", | ||
"chance": 2.0 | ||
}, | ||
{ | ||
"item": "minecraft:gravel", | ||
"chance": 0.2 | ||
} | ||
], | ||
"experience": 0.35 | ||
} |
19 changes: 19 additions & 0 deletions
19
...n/resources/data/thermal/recipes/machine/biggerreactors/pulverizer_mod_uranium_chunk.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "thermal:pulverizer", | ||
"conditions": [ | ||
{ | ||
"modid": "thermal_expansion", | ||
"type": "forge:mod_loaded" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "biggerreactors:uranium_chunk" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "biggerreactors:uranium_dust", | ||
"chance": 1.25 | ||
} | ||
], | ||
"experience": 0.35 | ||
} |