From 837dccc822f4bfa303179e7fe431342ffdbc17e3 Mon Sep 17 00:00:00 2001 From: Jadis <49281043+jadis0x@users.noreply.github.com> Date: Sun, 11 Sep 2022 00:47:36 +0300 Subject: [PATCH] Fix: The name 'GameObject' does not exist in the current context --- DevourClient/Helpers/Map.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DevourClient/Helpers/Map.cs b/DevourClient/Helpers/Map.cs index 56582ee..3385e55 100644 --- a/DevourClient/Helpers/Map.cs +++ b/DevourClient/Helpers/Map.cs @@ -24,9 +24,9 @@ } } - public static GameObject GetAzazel() + public static UnityEngine.GameObject GetAzazel() { - return GameObject.FindGameObjectWithTag("Azazel"); + return UnityEngine.GameObject.FindGameObjectWithTag("Azazel"); } } }