diff --git a/1.6/Assemblies/FCP_Core.dll b/1.6/Assemblies/FCP_Core.dll index d46d9c5..e53e66e 100644 Binary files a/1.6/Assemblies/FCP_Core.dll and b/1.6/Assemblies/FCP_Core.dll differ diff --git a/Common/Languages/English/Keyed/FCPToolsKeyed.xml b/Common/Languages/English/Keyed/FCPToolsKeyed.xml index aa045e6..bc8ef88 100644 --- a/Common/Languages/English/Keyed/FCPToolsKeyed.xml +++ b/Common/Languages/English/Keyed/FCPToolsKeyed.xml @@ -21,7 +21,7 @@ Options to help with the diagnosis of issues or modify behaviour for debugging Logging - Debug + Verbose Logging Due to {0_possessive} promotion to {1}, {0_labelShort} has lost {0_possessive} {2} permit diff --git a/Common/Languages/English/Keyed/VATS.xml b/Common/Languages/English/Keyed/VATS.xml index f2322b7..45fe830 100644 --- a/Common/Languages/English/Keyed/VATS.xml +++ b/Common/Languages/English/Keyed/VATS.xml @@ -1,6 +1,7 @@ - V.A.T.S. + V.A.T.S. + V.A.T.S. Settings Enable time slowdown Enable the zoom shader How many ticks after creation until we force remove the zoom (in case of bugs): {0} ticks diff --git a/Source/FCPTools/FalloutCore/VATS/Settings/VATSSettings.cs b/Source/FCPTools/FalloutCore/VATS/Settings/VATSSettings.cs index 3e4dd55..7d9c901 100644 --- a/Source/FCPTools/FalloutCore/VATS/Settings/VATSSettings.cs +++ b/Source/FCPTools/FalloutCore/VATS/Settings/VATSSettings.cs @@ -4,7 +4,7 @@ namespace FCP.Core.VATS; public class VATSSettings : SettingsTab { - public override string TabName => "FCP_Settings.VATS".Translate(); + public override string TabName => "FCP_Settings_VATS".Translate(); public float flatHitChanceBoost = 0.2f; public int cooldownTicks = 600; @@ -17,16 +17,20 @@ public class VATSSettings : SettingsTab public override void DoTabWindowContents(Rect wrect) { - - PopulateMissingMultipliers(); int multiplierHeight = multiplierLookup.Count * 56; int restHeight = 248 + 64; float scrollViewHeight = multiplierHeight + restHeight; Rect viewRect = new Rect(wrect.x, wrect.y, wrect.width - 20, scrollViewHeight); scrollPosition = GUI.BeginScrollView(new Rect(wrect.x, wrect.y, wrect.width, wrect.height - 50), scrollPosition, viewRect); - Listing_Standard options = new Listing_Standard(); + var options = new Listing_Standard(); options.Begin(viewRect); + + Text.Font = GameFont.Medium; + options.Label("FCP_Settings_VATS_header".Translate()); + Text.Font = GameFont.Small; + options.GapLine(); + try { if (options.ButtonText("FCP_VATS_Settings_Reset".Translate()))