diff --git a/Core/Helpers/TraderHelper.cs b/Core/Helpers/TraderHelper.cs index f8685bef..990f6787 100644 --- a/Core/Helpers/TraderHelper.cs +++ b/Core/Helpers/TraderHelper.cs @@ -28,14 +28,14 @@ public class TraderHelper TimeUtil timeUtil, RandomUtil randomUtil, LocalisationService localisationService, - ConfigServer configServer, Dictionary? highestTraderPriceItems) + ConfigServer configServer) { _logger = logger; _timeUtil = timeUtil; _randomUtil = randomUtil; _localisationService = localisationService; _configServer = configServer; - _highestTraderPriceItems = highestTraderPriceItems; + _highestTraderPriceItems = new Dictionary(); _traderConfig = _configServer.GetConfig(ConfigTypes.TRADER); }