From 693dc35a9fdbffa4b8a9119b4e03e4cc4b1d877b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Mi=C5=9B?= <> Date: Thu, 20 Nov 2025 14:35:47 +0100 Subject: [PATCH] fixes --- Assets/AI/_Summoner/SA_SpawnMinions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/AI/_Summoner/SA_SpawnMinions.cs b/Assets/AI/_Summoner/SA_SpawnMinions.cs index 90fdac5e8..8d126a3ee 100644 --- a/Assets/AI/_Summoner/SA_SpawnMinions.cs +++ b/Assets/AI/_Summoner/SA_SpawnMinions.cs @@ -50,8 +50,8 @@ namespace DemonBoss.Summoner private void OnEnter(vIFSMBehaviourController fsmBehaviour) { - summoner = fsmBehaviour.GetComponent(); - animator = fsmBehaviour.GetComponent(); + summoner = fsmBehaviour.gameObject.GetComponent(); + animator = fsmBehaviour.gameObject.GetComponent(); if (summoner == null) {