modinfo <Block> not working?

I haven't tried using the "Block" setting in a mod as yet, but it might not be implemented in Civ6 even though showing as an option in ModBuddy. References really don't accomplish much of anything in Civ6, and Dependancies only require that the other mod be enabled -- they don't in any way create inherently an order of loading of a mod or its component actions.
 
I've find <Dependences> and <References> working fine. <References> btw set load order correctly from my experience. This is only <Block> seem do nothing at all.
 
References do not work because mods do not load their code in an entirety in order of mod-enabling. They load their action components entirely on the settings of <LoadOrder> within the actions for all mods currently enabled. Without a <LoadOrder> setting established for an action, it is default set as "0". But mods and their component actions do not load in the same order when starting a new game as when loading a saved game.

When multiple mods are all using no <LoadOrder> setting or are using an equivalent load order setting for all or some of their actions, then the order the actions load becomes dependant on enabling order and alphabetic order of the action ID "names" depending on whether a set-up of a new game or a load of a saved game is underway.

Dependancies do not force a load order of components either. I have a mod which is listed as a dependancy for several other mods I have made. The mod that the others are all dependant upon loads some of its code before the others and some of its code after the other mods have all loaded their code. This is controlled by the set-up of the <LoadOrder> settings in all the actions of these mods.

There has been some improvement on the part of Firaxis in these seemingly-random loading order issues since Civ6 was first released, but the only way to ensure proper loading order of a mod's component actions vis-a-vis any other mod is by establishment of <LoadOrder> in the <Properties> of each action.
 
Then probably I was just lucky with <References> and <Dependances>. Usually when I set <Reference> to some other mod, this mod loads (or at least ImportFiles, not sure about injections) before mod containing <Reference> in its modinfo. Same with <Dependances>. Plus it enables mods listed in dependances automaticaly from in game Additional Content menu.
 
Yes, that's one nice thing about Dependancies in civ6. They auto-enable the required mod(s) when the mod(s) that contain the requirement in their modinfo file are enabled, and when the "base" required mod is disabled all the mods that depend on it are also disabled.
 
Top Bottom