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); } }