diff --git a/Libraries/Core/Services/TraderAssortService.cs b/Libraries/Core/Services/TraderAssortService.cs index 8792ce03..0e2f0ac2 100644 --- a/Libraries/Core/Services/TraderAssortService.cs +++ b/Libraries/Core/Services/TraderAssortService.cs @@ -1,4 +1,4 @@ -using SptCommon.Annotations; +using SptCommon.Annotations; using Core.Models.Eft.Common.Tables; namespace Core.Services; @@ -6,7 +6,7 @@ namespace Core.Services; [Injectable(InjectionType.Singleton)] public class TraderAssortService { - private Dictionary _pristineTraderAssorts = new(); + protected readonly Dictionary _pristineTraderAssorts = new(); public TraderAssort? GetPristineTraderAssort(string traderId) { @@ -18,7 +18,7 @@ public class TraderAssortService /// /// Store trader assorts inside a class property /// - /// Traderid to store assorts against + /// Trader id to store assorts against /// Assorts to store public void SetPristineTraderAssort(string traderId, TraderAssort assort) {