From c44bedc4661d501a21d932d97526718296ea5c03 Mon Sep 17 00:00:00 2001 From: Pedro Gomes Date: Mon, 1 Jul 2024 22:04:18 +0100 Subject: [PATCH] bugfix blizzard --- Assets/Scripts/Networking/NetworkedAreaOfEffect.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Networking/NetworkedAreaOfEffect.cs b/Assets/Scripts/Networking/NetworkedAreaOfEffect.cs index ad626e8a..e0d0b68c 100644 --- a/Assets/Scripts/Networking/NetworkedAreaOfEffect.cs +++ b/Assets/Scripts/Networking/NetworkedAreaOfEffect.cs @@ -77,7 +77,7 @@ public class NetworkedAreaOfEffect : MonoBehaviour, IPunObservable protected virtual void CheckSurroundings() { hits = Physics.OverlapSphere(this.transform.position, radius, abilityHitLayer); - + targets.Clear(); foreach (Collider collider in hits) { Debug.Log("hit collider " + collider.name);