ModTweaker

ModTweaker

88M Downloads

Pure Daisy syntax is reversed

Shahelion opened this issue ยท 4 comments

commented

On the wiki it says that Output is listed first, then Input. However, when actually using it in a script, the first item is apparently the input. Almost all other recipe types have the Output first.

Example:
mods.botania.PureDaisy.addRecipe(Botania:bifrostPerm, Mystcraft:BlockCrystal);

You would expect this to turn crystal blocks into Bifrost blocks, but it turns Bifrost blocks into crystal blocks.

commented

Oops will look into that!

commented

Compared to every other type of minetweaker recipe, which puts output first. This can cause some mods to think a recipe is being made for the input item, and trigger an auto commenting-out of the lines.

commented

Ahhh you mean in that way. Well, in 1.8 we will probably change the Syntax in a correct way, namely Output -> Input -> Misc with the parameters. If we would do this in 1.7 everyone's scripts would break. We are already working on changing the parameters for TC5 to be in the correct way and if we will get to Botania 1.8 we will change it according to that too :)

commented

No it isn't?

//Pure Daisy
//InputBlock, OutputBlock
mods.botania.PureDaisy.addRecipe(minecraft:emerald_block, minecraft:diamond_block);
//OutputBlock
mods.botania.PureDaisy.removeRecipe(minecraft:obsidian);