MissionControl
MissionControl copied to clipboard
Additional Lances: Add a match for faction that hook into IsClan, IsInnerSphere etc
There's a request to ensure AL lances use specific lances when Clan vs. InnerSphere.
AL has matchers already so upgrade it to check the Factions for:
- IsGreatHouse
- IsClan
- IsMercenary
- IsPirate
- IsInnerSphere (checks IsGreatHouse, IsMercenary, IsPirate)
One problem I've seen is some modpacks don't always set IsClan
for their clan factions - so it'll take some coordinating with the modpacks to ensure they set this to true.
For example:
"FACTION_TYPE:Clan": [
"Heavy_Clan_Lance"
]
"FACTION_TYPE:InnerSphere": [
"Heavy_IS_Lance"
]
To work around issues with modpacks not setting IsClan
correctly the following would work:
"FACTION_NAME_STARTS_WITH:Clan": [
"Heavy_Clan_Lance"
]