From 89c065f02628af926bae4f519f66d66b09695239 Mon Sep 17 00:00:00 2001 From: Richard Griffiths Date: Mon, 27 Jul 2020 21:57:59 +0200 Subject: [PATCH 1/2] Fix broken bigger drop support --- src/Core/MissionControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/MissionControl.cs b/src/Core/MissionControl.cs index ffefef05..245cea18 100644 --- a/src/Core/MissionControl.cs +++ b/src/Core/MissionControl.cs @@ -431,7 +431,7 @@ public bool AreAdditionalPlayerMechsAllowed() { bool areAdditionalPlayerMechsAllowed = Main.Settings.ActiveContractSettings.Has(ContractSettingsOverrides.AdditionalPlayerMechs_Enable) && Main.Settings.ActiveContractSettings.GetBool(ContractSettingsOverrides.AdditionalPlayerMechs_Enable); if (areAdditionalPlayerMechsAllowed) return true; - areAdditionalPlayerMechsAllowed = IsAnyFlashpointContract() && Main.Settings.EnableAdditionalPlayerMechsForFlashpoints; + areAdditionalPlayerMechsAllowed = !IsAnyFlashpointContract() || (IsAnyFlashpointContract() && Main.Settings.EnableAdditionalPlayerMechsForFlashpoints); if (areAdditionalPlayerMechsAllowed) areAdditionalPlayerMechsAllowed = Main.Settings.AdditionalPlayerMechs; return areAdditionalPlayerMechsAllowed; From 8030d3bca48a22965e2958118b33a6185a0d974d Mon Sep 17 00:00:00 2001 From: Richard Griffiths Date: Mon, 27 Jul 2020 21:58:27 +0200 Subject: [PATCH 2/2] Version bump --- mod.json | 2 +- src/MissionControl.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mod.json b/mod.json index 9b3faf6a..5b5daf1e 100644 --- a/mod.json +++ b/mod.json @@ -1,7 +1,7 @@ { "Name": "Mission Control", "Enabled": true, - "Version": "1.1.0", + "Version": "1.1.1", "Description": "A HBS BattleTech mod that adds custom contract types and varies the encounter specifics such as encounter boundary size, spawn locations, lance numbers and objectives", "Author": "CWolf", "Contact": "cwolfs@gmail.com", diff --git a/src/MissionControl.csproj b/src/MissionControl.csproj index ef12555a..13904929 100644 --- a/src/MissionControl.csproj +++ b/src/MissionControl.csproj @@ -1,6 +1,6 @@ - 1.1.0 + 1.1.1 Library net471