Created
April 7, 2019 17:02
-
-
Save Lothrazar/5018db89552a79d5980b70ee026baa8a to your computer and use it in GitHub Desktop.
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
import mods.cyclicmagic.Solidifier; | |
// output, recipe, fluid, quantity | |
Solidifier.addRecipe(<minecraft:clay>, [<minecraft:dirt>, <minecraft:dirt>], "water", 300); | |
Solidifier.removeShapedRecipe(<minecraft:obsidian>); | |
import mods.cyclicmagic.Melter; | |
// input, fluid, quantity | |
Melter.addRecipe([<minecraft:dirt>, <minecraft:dirt>], "water", 300); | |
Melter.removeShapedRecipe("water", 500); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment