From 2a2b81bc4a7304d4fd0ffe71701df229be9b534b Mon Sep 17 00:00:00 2001 From: Kaeno Date: Fri, 12 Jul 2024 16:21:03 +0000 Subject: [PATCH] change route to lowercase (!150) Reviewed-on: https://dev.sp-tarkov.com/SPT/Modules/pulls/150 --- project/SPT.Custom/Patches/CustomAiPatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/SPT.Custom/Patches/CustomAiPatch.cs b/project/SPT.Custom/Patches/CustomAiPatch.cs index 5d3e84a..96ca886 100644 --- a/project/SPT.Custom/Patches/CustomAiPatch.cs +++ b/project/SPT.Custom/Patches/CustomAiPatch.cs @@ -108,7 +108,7 @@ namespace SPT.Custom.Patches private static List GetBossConvertFromServer() { - string json = RequestHandler.GetJson("/singleplayer/BossConvert"); + string json = RequestHandler.GetJson("/singleplayer/bossconvert"); return JsonConvert.DeserializeObject>(json); }