From c967b51aec7b07147c38054809f644b232e4ef3d Mon Sep 17 00:00:00 2001 From: DenisZhmakin Date: Mon, 2 Sep 2024 08:35:03 +0000 Subject: [PATCH] Included the AmmoUsedCounterPatch patch to fix a bug with counting used cartridges (#773). (!164) Reviewed-on: https://dev.sp-tarkov.com/SPT/Modules/pulls/164 Co-authored-by: DenisZhmakin Co-committed-by: DenisZhmakin --- project/SPT.SinglePlayer/SPTSingleplayerPlugin.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/project/SPT.SinglePlayer/SPTSingleplayerPlugin.cs b/project/SPT.SinglePlayer/SPTSingleplayerPlugin.cs index 834c270..52beca3 100644 --- a/project/SPT.SinglePlayer/SPTSingleplayerPlugin.cs +++ b/project/SPT.SinglePlayer/SPTSingleplayerPlugin.cs @@ -36,6 +36,7 @@ namespace SPT.SinglePlayer new DisableReadyLocationReadyPatch().Enable(); new BotTemplateLimitPatch().Enable(); new LoadOfflineRaidScreenPatch().Enable(); + new AmmoUsedCounterPatch().Enable(); // Necessary for fixing bug #773 new PluginErrorNotifierPatch().Enable(); new GetNewBotTemplatesPatch().Enable(); new MapReadyButtonPatch().Enable();