-
Notifications
You must be signed in to change notification settings - Fork 96
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
General improvements [Ready To Merge] #733
Conversation
The majority belong to marcin212
Marcin212 minetweakersupport
Sorry, I am pretty busy the next weeks. @Baughn could you have a look at? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - tested only one recipe with MineTweaker and it worked as expected.
The new exporter texture is nice too.
public static MinetweakerIntegration instance = new MinetweakerIntegration(); | ||
|
||
|
||
public void initialize(){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could be static? If yes, there would be no need for a singleton...
Heads up: Minetweaker support for removal does not work with any Recipe for the Plate Machine, Compressor, or Magnatizer. Not sure why, as I can add recipes just fine, and remove recipes from the Macerator just fine too. |
I'm planning on implementing some sort of minetweaker support in with #652, which I've resumed work on recently. I'm not sure how that'll end up affecting this PR. |
I made minor bug fixes.
It works very well.
import minetweaker.item.IIngredient;
import mods.electricalage.Macerator;
Macerator.addRecipe(<minecraft:wheat> as IIngredient, 1000.0, [<MyMod:itemA>, <MyMod:itemD>]);
#307