diff --git a/CHANGELOG.md b/CHANGELOG.md index 38c0effd..a7d4eb12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## Version 0.5.5 +* Fix for 2.0.4j + ## Version 0.5.4 * Contains fix for broken IAfterRulebookEventTriggerHandler, and IBeforeRulebookEventTriggerHandler events diff --git a/Repository.json b/Repository.json index 7136f60d..5cd12c2c 100644 --- a/Repository.json +++ b/Repository.json @@ -2,7 +2,7 @@ "Releases": [ { "Id": "TabletopTweaks-Core", - "Version": "0.5.4" + "Version": "0.5.5" } ] } diff --git a/TabletopTweaks-Core/Info.json b/TabletopTweaks-Core/Info.json index 0984a041..d2b62a63 100644 --- a/TabletopTweaks-Core/Info.json +++ b/TabletopTweaks-Core/Info.json @@ -10,5 +10,5 @@ "Repository": "https://raw.githubusercontent.com/Vek17/TabletopTweaks-Core/master/Repository.json", "Requirements": [], "LoadAfter": ["MewsiferConsole.Mod"], - "Version": "0.5.4" + "Version": "0.5.5" } \ No newline at end of file diff --git a/TabletopTweaks-Core/NewUI/ActionBarPatches.cs b/TabletopTweaks-Core/NewUI/ActionBarPatches.cs index a36a7c38..17d68169 100644 --- a/TabletopTweaks-Core/NewUI/ActionBarPatches.cs +++ b/TabletopTweaks-Core/NewUI/ActionBarPatches.cs @@ -80,7 +80,7 @@ static class ActionBarSlotVM_OnShowConvertRequest_Patch { if (__instance.m_Conversion.Count == 0) { return false; } - __instance.ConvertedVm.Value = new ActionBarConvertedVM(__instance.m_Conversion.Select(abilityData => { + __instance.ConvertedVm.Value = new ActionBarConvertedVM(__instance.m_Conversion.m_AbilityData.Select(abilityData => { var pseudoActivatable = abilityData.Blueprint.GetComponent(); if (pseudoActivatable != null) { var slot = new MechanicActionBarSlotPseudoActivatableAbilityVariant { @@ -112,7 +112,7 @@ static class ActionBarSlotVM_OnShowConvertRequest_Patch { }; } - }).ToList(), new Action(__instance.CloseConvert)); + }).ToList(), new Action(__instance.CloseConvert)); return false; } }