Page 1 of 1

Incompatible Version - with 0.15.18 [SOLVED]

Posted: Wed Jun 07, 2017 9:26 pm
by quadrox
I am just starting out with modding.

I have created the basic directoyr structure with info.json (see below) and empty control.lua and data.lua.

Code: Select all

{
	"name": "ConstructionAssistant",
	"version": "0.1",
	"title": "Construction Assistant",
	"author": "quadrox",
	"contact": "no-spam",
	"homepage": "N/A",
	"description": "Secret for now",
	"dependencies": ["base >= 0.15.18"]
}
My factorio version is the latest version (0.15.18), and yet in the mods screen it says my mod is incompatible and something about factorio version 0.12. Why does this happen?

Re: Incompatible Version - with 0.15.18

Posted: Wed Jun 07, 2017 10:18 pm
by orzelek
You are missing one line:

Code: Select all

  "factorio_version": "0.15",
Thats how game validates the version - not by base dependency.

Re: Incompatible Version - with 0.15.18

Posted: Thu Jun 08, 2017 5:08 am
by quadrox
Thanks a lot - I thought it must be something like that, though I couldn't spot the problem myself.