diff --git a/project/Aki.SinglePlayer/Patches/RaidFix/PostRaidHealingPricePatch.cs b/project/Aki.SinglePlayer/Patches/RaidFix/PostRaidHealingPricePatch.cs index 99f774f..af35958 100644 --- a/project/Aki.SinglePlayer/Patches/RaidFix/PostRaidHealingPricePatch.cs +++ b/project/Aki.SinglePlayer/Patches/RaidFix/PostRaidHealingPricePatch.cs @@ -35,7 +35,8 @@ namespace Aki.SinglePlayer.Patches.RaidFix throw new IndexOutOfRangeException($"Loyalty level {loyaltyLevel} not found."); } - Traverse.Create(__instance).Property("CurrentLoyalty").SetValue(loyaltyLevelSettings.Value); + // Backing field of the "CurrentLoyalty" property + Traverse.Create(__instance).Field("k__BackingField").SetValue(loyaltyLevelSettings.Value); } } } \ No newline at end of file