Ex Nihilio
Mattabase opened this issue ยท 9 comments
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
You need to provide both input and output to remove a recipe:
mods.exnihilo.Sieve.removeRecipe(Input, Output);
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)
.
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
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)
.
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>);