From a5c2e1a0a4398dbb5550deea54123e8a05a56928 Mon Sep 17 00:00:00 2001 From: Kaeno Date: Thu, 18 Jan 2024 12:22:06 +0000 Subject: [PATCH] adjusted wildspawntype.gifter to not be hostile by default --- project/Aki.Custom/Patches/IsEnemyPatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Aki.Custom/Patches/IsEnemyPatch.cs b/project/Aki.Custom/Patches/IsEnemyPatch.cs index 8c331cc..321db18 100644 --- a/project/Aki.Custom/Patches/IsEnemyPatch.cs +++ b/project/Aki.Custom/Patches/IsEnemyPatch.cs @@ -22,7 +22,7 @@ namespace Aki.Custom.Patches [PatchPrefix] private static bool PatchPrefix(ref bool __result, BotsGroup __instance, IPlayer requester) { - if (__instance.InitialBotType == WildSpawnType.peacefullZryachiyEvent || __instance.InitialBotType == WildSpawnType.shooterBTR) + if (__instance.InitialBotType == WildSpawnType.peacefullZryachiyEvent || __instance.InitialBotType == WildSpawnType.shooterBTR || __instance.InitialBotType == WildSpawnType.gifter) { return true; // Do original code }