From 919320470b083accb86fabf9f96aa172d7ebdcab Mon Sep 17 00:00:00 2001 From: Braedon Date: Mon, 31 Jan 2022 00:02:36 -0500 Subject: [PATCH] Same but for Game Manager events --- Assets/Scripts/GameManager.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs index 985ce9e5..f3289f1d 100644 --- a/Assets/Scripts/GameManager.cs +++ b/Assets/Scripts/GameManager.cs @@ -138,6 +138,7 @@ namespace RhythmHeavenMania for (int i = 0; i < gameManagerEntities.Count; i++) { eventCaller.CallEvent(gameManagerEntities[i].datamodel); + currentEvent++; } for (int i = 0; i < entitesAtSameBeat.Count; i++) @@ -154,7 +155,7 @@ namespace RhythmHeavenMania currentEvent++; } - currentEvent += gameManagerEntities.Count; + // currentEvent += gameManagerEntities.Count; } }