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() {