-
Notifications
You must be signed in to change notification settings - Fork 335
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
Use "chestWood" Ore Dictionary values rather than hardcoding the item. #3899
base: master
Are you sure you want to change the base?
Conversation
Closes micdoodle8#3891 **BREAKING CHANGE**
I would prefer to do this without a breaking change. This one is a severe breaking change because almost every Galacticraft add-on adds more rockets with Can we not just:
More generally in my "value system": Stability of all our add-ons and all the modpacks which incorporate them > the one guy in issue 3891 who would prefer to use some other mod's wooden chest in a recipe in place of a vanilla chest. |
Galacticraft/src/main/java/micdoodle8/mods/galacticraft/core/tile/TileEntityDeconstructor.java Lines 383 to 386 in f85e1dd
Please explain what is wrong here, maybe I am being slow to understand today? The intention is to deconstruct a rocket into Galacticraft compressed metals, even if the original rocket was constructed using another mod's OreDicted equivalent. That's the only reasonable way to do this - otherwise every crafted item would need to carry metadata listing its original materials, and there's no provision for that in vanilla / Forge. If you're saying the code does not achieve the purpose stated above, please explain? :) |
Ok, I'll see if I can make this change without breaking add-ons. Galacticraft/src/main/java/micdoodle8/mods/galacticraft/core/tile/TileEntityDeconstructor.java Line 383 in f85e1dd
|
oooh! I totally missed that, thank you for spotting. |
I committed a non-breaking version of your code. I like your code better but we'll wait to combine it with other breaking changes after a promotion. The drawback to my version is you can't mix and match chest types in the same recipe. The number of recipes to search through would increase by a factor of (chest types)^3 if I were to fix this without your Ingredient solution. |
Btw your fixing of item rotations commit contains breaking code already due to the method rename in ClientUtil so any addon with rockets now will have to update anyways so you might as well push this change out now too |
BlesseNtumble/GalaxySpace#427 |
Ye looks like im updating ExtraPlanets, Planet Progressions for MC 1.12.2 later then too Woo glad to see you around again micdoodle tho |
Sorry, didn't know anyone was using that method! Radfast reverted the breaking change and created build 250. |
Closes #3891
BREAKING CHANGE
Also, I think this is incorrect?
Galacticraft/src/main/java/micdoodle8/mods/galacticraft/core/tile/TileEntityDeconstructor.java
Lines 383 to 386 in f85e1dd