diff --git a/Libraries/Core/Helpers/PresetHelper.cs b/Libraries/Core/Helpers/PresetHelper.cs index a9692bc8..1973b601 100644 --- a/Libraries/Core/Helpers/PresetHelper.cs +++ b/Libraries/Core/Helpers/PresetHelper.cs @@ -13,11 +13,14 @@ public class PresetHelper( ICloner _cloner ) { - protected Dictionary> _lookup = new(); + /// + /// Preset cache - key = item tpl, value = preset ids + /// + protected Dictionary> _lookup = new(); protected Dictionary _defaultEquipmentPresets; protected Dictionary? _defaultWeaponPresets; - public void HydratePresetStore(Dictionary> input) + public void HydratePresetStore(Dictionary> input) { _lookup = input; }