From b49b473cb7cef9e60493746968c6e24d92cd9891 Mon Sep 17 00:00:00 2001 From: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com> Date: Thu, 25 Jan 2024 21:02:08 +0100 Subject: [PATCH] fix again --- Assets/Scripts/Games/TotemClimb/TCJumper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/Games/TotemClimb/TCJumper.cs b/Assets/Scripts/Games/TotemClimb/TCJumper.cs index 1d4464c01..9e5340402 100644 --- a/Assets/Scripts/Games/TotemClimb/TCJumper.cs +++ b/Assets/Scripts/Games/TotemClimb/TCJumper.cs @@ -111,7 +111,7 @@ namespace HeavenStudio.Games.Scripts_TotemClimb target = _game.IsTripleBeat(beat) ? _game.GetJumperFrogPointAtBeat(beat, 1) : _game.GetJumperPointAtBeat(beat) }; - if (beat + 1 >= _onPlayBeat && _game.EndBeat <= beat + 1) + if (beat + 1 >= _onPlayBeat && _game.EndBeat <= beat + 1 && _game.UseEndTotem) { _path.positions[1] = new PathPos() { @@ -215,7 +215,7 @@ namespace HeavenStudio.Games.Scripts_TotemClimb target = _game.GetDragonPointAtBeat(beat) }; - if (beat + 2 >= _onPlayBeat && _game.EndBeat <= beat + 2) + if (beat + 2 >= _onPlayBeat && _game.EndBeat <= beat + 2 && _game.UseEndTotem) { _path.positions[1] = new PathPos() {