From 83ea79c56c381ecb208429980525fc5db5506e10 Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 27 Jul 2023 21:42:46 +0100 Subject: [PATCH] make patch do original code afterwards --- project/Aki.Custom/Patches/PmcFirstAidPatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Aki.Custom/Patches/PmcFirstAidPatch.cs b/project/Aki.Custom/Patches/PmcFirstAidPatch.cs index 5ebe26f..6e96d0f 100644 --- a/project/Aki.Custom/Patches/PmcFirstAidPatch.cs +++ b/project/Aki.Custom/Patches/PmcFirstAidPatch.cs @@ -33,7 +33,7 @@ namespace Aki.Custom.Patches healthController.RemoveNegativeEffects(EBodyPart.RightArm); } - return false; // skip original + return true; // Do original } } }