[QUE] Error: Could Not Load Mod

I fixed the thing in my package.json that @DanielKlug told me to do for my mod, and now I got a new error.

The error is: Error: Could Not Load Mod

The mod worked fine before the Mod API update that happened earlier today.

Code:

{
	"id" : "Mod",
	"name" : "Game Dev Tycoon: Platforms, Events, and Topics OH MY!",
	"version": "0.9.7",
	"author":"Venomous aka Venom(Turntablelover) <darthcoolness@gmail.com>",
	"description" : "Mod for Game Dev Tycoon",
	"url" : "https://github.com/Turntablelover/Game-Dev-Tycoon-Mod",
	"main" : "./venomous-modAPI",
	"dependencies" : {
		"gdt-modAPI":"0.1.x"
	}
}

I do not know how to fix the problem. Please help me, this is a huge emergency.

well, we might look into this later today but before anything else: Mod is not a great choice for the id. use something unique or use a GUID as I mentioned before.

Instead of

"main" : "./venomous-modAPI",

Do

"main" : "./venomous.js",

Well venomous.js is just a example of what script your are going to load so if you have a script in venemous-modAPI folder that is maybe called venomous then it would be venomous.js.

That worked for me

ok, that fixed it.