Hey all,
so my Base Plugin starts with this
and I have an Addon starting with this
Well, on my machine this dependency check works fine. However, I got a bug report that this error "Newest version of my Plugin required!..." is thrown, although he included both Plugins with correct order in his PluginManager.
Is there some JS inconsistency or whatever secret that I haven't learnt yet?
so my Base Plugin starts with this
Code:
'use strict';
var MK = MK || {};
MK.alias = MK.alias || {};
var Imported = Imported || {};
Imported.MK_RandomGenerate_Dungeon = '1.1';
and I have an Addon starting with this
Code:
'use strict';
var Imported = Imported || {};
Imported.MK_RandomGenerate_Meta = '0.1';
if (!Imported.MK_RandomGenerate_Dungeon || Number(Imported.MK_RandomGenerate_Dungeon) < 0.9)
alert("Newest version of MK_RandomGenerate_Dungeon.js required! Please download and add it to this Project.");
Well, on my machine this dependency check works fine. However, I got a bug report that this error "Newest version of my Plugin required!..." is thrown, although he included both Plugins with correct order in his PluginManager.
Is there some JS inconsistency or whatever secret that I haven't learnt yet?