Jump to content

Referenceing my mod in another one of my mods


skip999

Recommended Posts

Hello,

I have been working on a JEI Plugin for my mod, and I have run into a small problem. As a back story, I have my items in one mod and blocks in another. For the JEI plugin to work, I need to be able to reference the item library in my block library. I know how to do this in JSON files, but I don't know how to do it for inside the class files themselves. Would I need to create a Maven repository for the one mod and then import it via the gradle, or is there a much simpler method?

 

Thanks!

Link to comment
Share on other sites

2 minutes ago, skip999 said:

I have my items in one mod and blocks in another.

What. Why?

Does this mean your BlockItems are in your items mod?

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

No I suppose I should have explained it a tad bit better. Items that are items only are contained in the one mod (armor, ingots,that sort of thing). Then blocks (and their respective block items) are separate mod. I might merge them in the future, but it essentially helps me keep the clutter down since i am working on the block library alot and havn't touched the item library in a while.

Link to comment
Share on other sites

If you only need them as plain Block or Item instances (and you don't need to reference specific methods in their respective specific classes) you can just create a new RegistryObject with the respective registry name and store it in a static final field. You can then use it to get the Block/Item/whatever instance.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.