-
Notifications
You must be signed in to change notification settings - Fork 269
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
[Question] How can I specify mods loading order #909
Comments
If your mod |
Wrong. Load order is not set by dependencies. |
Not technically, no. However, if mod `A` loads first, it should load `B` as
one of the first things it does, then carry out loading `A`.
|
It wont initialize an instance of Mod B's mod initializer (nor should it). it may class load it, but. some mods are designed instanced not static. |
That's wild. @Phoupraw, why do you specifically need Are you the one coding the mod, or is it one made by someone else? |
I am making an addon for Create mod. Create is lazy initalized (by a lib, Registrate). Its registries (items, blocks, and so on) don't be initialized if you just load its classes. Only after its initialiser is invoked, its registries are completed. |
use mixin :p |
For example, my mod, A, depends on another mod, B. I want A's
ModInitializer
be called after B`s, and A's datapack and resourcepack override B's. How can I do this?The text was updated successfully, but these errors were encountered: