Fix up wrong type

This commit is contained in:
Archangel
2025-08-23 13:25:37 +02:00
parent c40439d04f
commit 0fe034691d
@@ -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
/// </summary>
/// <returns></returns>
public Dictionary<string, object> GetBotCoreDifficulty()
public Dictionary<string, JsonElement> GetBotCoreDifficulty()
{
return databaseService.GetBots().Core;
}