From cf72610f68e73cce6f0097f3a715aa5bf1550db7 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 (cherry picked from commit 2a2b81bc4a7304d4fd0ffe71701df229be9b534b) --- 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 2e13f02..8f3ed69 100644 --- a/project/SPT.Custom/Patches/CustomAiPatch.cs +++ b/project/SPT.Custom/Patches/CustomAiPatch.cs @@ -115,7 +115,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); }