

A mod that allows you to see maps in alternate dimensions.
By default, all dimensions get their own map.
By creating files with the file name formated like DimensionMaps_RundownID_Tier_ExpeditionIndex.json, you're able to change which dimensions should be 'disconnected' on a per-level basis.
Config files go in BepInEx/config/.
(See Examples below!)
{
"EnableDimensionSeventeenToTwenty": false,
"InvertDimensionsToDisconnect": false,
"DimensionsToDisconnect": [
0,
2
],
"DimensionsToForceDefaultMapRendering": [
1
]
}
EnableDimensionSeventeenToTwenty (bool)
InvertDimensionsToDisconnect (bool)
DimensionsToDisconnect array as DimensionsToConnect instead (Invert)DimensionsToDisconnect (List<uint>)
DimensionsToForceDefaultMapRendering (List<uint>)
Format: DimensionMaps_RundownID_Tier_ExpeditionIndex.json
Examples:
DimensionMaps_41_A_0.json
R6A1DimensionMaps_1_TierC_2.json
RundownID: has to be an integer
for Tier either single characters (A) or the full enum name (TierA) can be used.
ExpeditionIndex: has to be an integer
By creating a file called DimensionMaps_GlobalFallback.json, you're able to define a global fallback for whenever a level does not have its own config.
Using this fallback you're able to bring back the vanilla behaviour by 'disconnecting' all dimensions except for dimension 0 (=> Reality),
or a little more deviously disable maps for any and all dimensions for every level.
(Don't do the latter, or you're evil tho! >:c)
If a level does have its own config, this global fallback is ignored and the level specific one used instead.