From 5736ade142332f9901fd2d93129fc8391cb4d6b6 Mon Sep 17 00:00:00 2001 From: ALittlePatate Date: Sun, 11 Sep 2022 09:13:14 +0200 Subject: [PATCH] fix: using coroutine's cache for GetAzazel --- DevourClient/Helpers/Map.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevourClient/Helpers/Map.cs b/DevourClient/Helpers/Map.cs index 3385e55..71756e8 100644 --- a/DevourClient/Helpers/Map.cs +++ b/DevourClient/Helpers/Map.cs @@ -26,7 +26,7 @@ public static UnityEngine.GameObject GetAzazel() { - return UnityEngine.GameObject.FindGameObjectWithTag("Azazel"); + return Helpers.Entities.Azazels[0].gameObject; } } }