From ecc67c5daa2e596df7d7b0f78b4f4649c1c8acdf Mon Sep 17 00:00:00 2001 From: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com> Date: Thu, 22 Jun 2023 12:16:11 +0200 Subject: [PATCH] Fixed a bug with no count in blocks --- Assets/Scripts/Games/NightWalkAgb/AgbPlatformHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Games/NightWalkAgb/AgbPlatformHandler.cs b/Assets/Scripts/Games/NightWalkAgb/AgbPlatformHandler.cs index ec6f7ec43..77e68238a 100644 --- a/Assets/Scripts/Games/NightWalkAgb/AgbPlatformHandler.cs +++ b/Assets/Scripts/Games/NightWalkAgb/AgbPlatformHandler.cs @@ -45,7 +45,7 @@ namespace HeavenStudio.Games.Scripts_AgbNightWalk { AgbPlatform platform = Instantiate(platformRef, transform); platform.handler = this; - platform.StartInput(Math.Ceiling(beat) + i - (platformCount * 1.5), Math.Ceiling(beat) + i - platformCount); + platform.StartInput(beat, Math.Ceiling(beat) + i - platformCount); platform.gameObject.SetActive(true); } }