-
Notifications
You must be signed in to change notification settings - Fork 154
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
Add grinding for pyrite from Everness mod #633
Add grinding for pyrite from Everness mod #633
Conversation
…t if everness mod is present (also includes images for pyrite dust).
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.
Thank you for the contribution.
- Strictly speaking,
optional_depends
is not necessary in this case. Recipes in technic can be registered out of order.minetest.get_modpath
will also always work. - Please run
optipng -o7 -strip all
orpngcrush
on the two new textures. I think they could be smaller (thus less traffic to clients).
You're welcome. Added the crushed .png-s. They didn't become much smaller, though. As for the I'm not as well versed in the programming intricacies of MineTest yet, though. What consequences does it exactly have it the But if you're really sure, then of course I'll remove it. As you like, just let me know. |
It means that all mods in that list will be loaded before There is no performance difference. I'll leave the decision up to you whether to have more deterministic (but also more restricted) or mod dependencies or more freedom but uncertainty. |
Thanks for the detailed explanation, good to know. 👍 Edit: Also tested adding technic to the dependency list of everness. Worked that way too, so should be good. |
Thank you for testing. Looks good. Will merge in a few days unless there are objections. |
You're welcome. No objections from me. :) |
Hi,
I'm using Everness and wanted to be able to grind pyrite too, so created the option for it.
Submitting in case others might find it useful too.