This commit is contained in:
Spencer Killen 2023-11-12 16:25:53 -07:00
parent d7655bb1e5
commit 44f0abbedf
Signed by: sjkillen
GPG Key ID: 3AF3117BA6FBB75B
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,8 @@ func frame_inc(frame: int):
time_targets[frame] = target time_targets[frame] = target
func frames_change(_start: int, end: int): func frames_change(_start: int, end: int):
if not time_targets.has(end):
return
if time_targets[end] != target: if time_targets[end] != target:
set_target(time_targets[end].get_billiard()) set_target(time_targets[end].get_billiard())