Skip to content

Instantly share code, notes, and snippets.

@Choonster
Created January 19, 2015 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Choonster/6a8229b4ee1b410ac901 to your computer and use it in GitHub Desktop.
Save Choonster/6a8229b4ee1b410ac901 to your computer and use it in GitHub Desktop.
MineTweaker3 script to fix the recipe for Magical Crops' Platinum Seeds
# Fix Magical Crops Platnium Seeds recipe to use Nickel Seeds instead of the Nickel Crop block
val seeds = <minecraft:wheat_seeds>;
val extremeEssence = <magicalcrops:magicalcrops_MagicEssence:4>;
val nickelSeeds = <magicalcrops:magicalcrops_ModMagicSeedsNickel>;
val platinumIngot = <ore:ingotPlatinum>;
val platinumSeeds = <magicalcrops:magicalcrops_ModMagicSeedsPlatinum>;
recipes.remove(platinumSeeds);
recipes.addShapedMirrored(platinumSeeds, [[nickelSeeds, extremeEssence, platinumIngot], [extremeEssence, seeds, extremeEssence], [platinumIngot, extremeEssence, nickelSeeds]]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment