Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The mortar doesn't appear to respect NBT tags #33

Closed
belathus opened this issue Jun 7, 2018 · 2 comments
Closed

The mortar doesn't appear to respect NBT tags #33

belathus opened this issue Jun 7, 2018 · 2 comments
Assignees

Comments

@belathus
Copy link

belathus commented Jun 7, 2018

I wrote this script: https://github.com/belathus/Wanderlust-Renewed/blob/master/scripts/advancedmortars/thaumcraft.zs

It shows up in JEI correctly.

However, when testing it, the mortar consumed 3 of the same vis crystals, rather than 3 different vis crystals. I then tried to make salis mundis using only one crystal, and it worked. I'm guessing that it'd work with any vis crystal, which isn't what I want.

@codetaylor
Copy link
Owner

Reproduced with this:

import mods.advancedmortars.Mortar;

val one = <minecraft:stick>.withTag({SomeTag: "one"});
val two = <minecraft:stick>.withTag({SomeTag: "two"});
val three = <minecraft:stick>.withTag({SomeTag: "three"});

Mortar.addRecipe(["diamond"], <minecraft:furnace>, 2, [one, two, three]);

recipes.addShapeless(one, [<minecraft:cobblestone>]);
recipes.addShapeless(two, [<minecraft:dirt>]);
recipes.addShapeless(three, [<minecraft:string>]);

@codetaylor
Copy link
Owner

Should be fixed in 1.12.2-1.6.21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants