Jump to content

mcmod.info non-functional?


AEtherchild

Recommended Posts

I'm working on a new modding project, and for some reason my mcmod file is non-functional.

 

My encompassing class is CMI, so the zipfile for my mod contains the reobf'd CMI folder and the mcmod.info file described below. This is showing no information within the MultiMC tab, and the in-game mod list is telling me to provide a mcmod.info file.

 

{
  "modinfoversion": 2,
  "modlist": [{
    "modid": "AECMI",
    "name": "AEther's CMI",
    "description": "Integration between some of the biggest and coolest mods out there!",
    "version": "0.0.1",
    "mcversion": "1.4.6/7",
    "url": "http://www.minecraftforum.net/topic/1664069-wip-aethers-cmi-cross-mod-integration/",
    "authors": [ "AEtherchild", ],
    "requiredMods": [ "Forge" ],
  }]
}

 

The mcmod.info file was made in Notepad, ANSI encoded, if that makes a difference at all. I don't have an option to save-as in JSON so that was the next best choice.

 

I've also set mod metadata within my CMI class itself, I have NO idea whether this is supposed to help or not.

 

@PreInit
public void load(FMLPreInitializationEvent event) {
	event.getModMetadata().modId = "AECMI";
	event.getModMetadata().version = "0.0.1";
	event.getModMetadata().name = "AEther's CMI";
	event.getModMetadata().description = "Integration between some of the biggest mods out there!";
	event.getModMetadata().authorList.add("AEtherchild");
	event.getModMetadata().url = "http://www.minecraftforum.net/topic/1664069-wip-aethers-cmi-cross-mod-integration/";
}

 

Question is. What am I doing wrong?

 

Also while I'm here, I attempted to have the mcmod.info file within my CMI package in Eclipse, yet it got skipped over in obfuscation. Presumably I'm doing something wrong here too.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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