From 0fe034691dfb3c2a382fe4331a1213b2f1a252ae Mon Sep 17 00:00:00 2001 From: Archangel Date: Sat, 23 Aug 2025 13:25:37 +0200 Subject: [PATCH] Fix up wrong type --- Libraries/SPTarkov.Server.Core/Controllers/BotController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs b/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs index a5806ca9..2f485c6b 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/BotController.cs @@ -1,4 +1,5 @@ using System.Diagnostics; +using System.Text.Json; using System.Text.Json.Serialization; using SPTarkov.DI.Annotations; using SPTarkov.Server.Core.Constants; @@ -63,7 +64,7 @@ public class BotController( /// Get the core.json difficulty settings from database/bots /// /// - public Dictionary GetBotCoreDifficulty() + public Dictionary GetBotCoreDifficulty() { return databaseService.GetBots().Core; }