diff --git a/project/Aki.Custom/Patches/IsEnemyPatch.cs b/project/Aki.Custom/Patches/IsEnemyPatch.cs index 584d469..d406755 100644 --- a/project/Aki.Custom/Patches/IsEnemyPatch.cs +++ b/project/Aki.Custom/Patches/IsEnemyPatch.cs @@ -41,6 +41,11 @@ namespace Aki.Custom.Patches [PatchPrefix] private static bool PatchPrefix(ref bool __result, BotsGroup __instance, IPlayer requester) { + if (__instance.InitialBotType == WildSpawnType.peacefullZryachiyEvent) + { + return true; // Do original code + } + var isEnemy = false; // default not an enemy if (requester == null) {