ModTweaker

ModTweaker

88M Downloads

Ex Nihilio

Mattabase opened this issue ยท 9 comments

commented

https://dl.dropboxusercontent.com/u/15990261/ShareX/2015/07/2015-07-06_07-15-34.png

When trying remove a Sieve Recipe

mods.exnihilo.Sieve.removeRecipe(minecraft:wheat_seeds);

Command used

commented

You need to provide both input and output to remove a recipe:

mods.exnihilo.Sieve.removeRecipe(Input, Output);

commented

Close
(No idea if the works)
I know this is fixed

On Monday, July 6, 2015, Zixxl [email protected] wrote:

You need to provide both input and output to remove a recipe:

mods.exnihilo.Sieve.removeRecipe(Input, Output);

โ€”
Reply to this email directly or view it on GitHub
#172 (comment)
.

commented

Can confirm. This (and a whole slew of other ExNihilo bugs) was fixed in 0.8.2.

Jared, like every other programmer on the planet, is terrible at updating documentation while adding new features / changing things.

If you are unsure, run ModTweaker through a decompiler and look for mods.exnihilo.handlers.Sieve.removeRecipe() it calls for two IItemStacks to be passed into it, first is input, second is output. This was changed due to changes on ExNihilo's end when computing rewards. Go yell at @MikeLydeamore for messing it all up >:) Kappa

commented

Actually, @Yulife does documentation, not me, so go shout at him! >.> <.<

On Wednesday, July 8, 2015, hephinator [email protected] wrote:

Can confirm. This (and a whole slew of other ExNihilo bugs) was fixed in
0.8.2.

Jared, like every other programmer on the planet, is terrible at updating
documentation while adding new features / changing things.

If you are unsure, run ModTweaker through a decompiler and look for
mods.exnihilo.handlers.Sieve.removeRecipe() it calls for two IItemStacks to
be passed into it, first is input, second is output. This was changed due
to changes on ExNihilo's end when computing rewards. Go yell at
@MikeLydeamore https://github.com/mikelydeamore for messing it all up

:) Kappa

โ€”
Reply to this email directly or view it on GitHub
#172 (comment)
.

commented

This is a documentation issue not a bug in ModTweaker2. I'll close this issue.

commented

Documentation is important so this will stay open until the doc is fixed ๐Ÿ‘

commented

I'm on vacation you dork, you do it ;) (or Snowshock)

commented

Changed the function a little for the next version:
mods.exnihilo.Sieve.removeRecipe(Input, @Optional Output);

To remove <minecraft:wheat_seeds> from all recipes, the command would be:

mods.exnihilo.Sieve.removeRecipe(<*>, <minecraft:wheat_seeds>);

commented

Wiki updated