More work on implementing quests and tech trees

This commit is contained in:
2025-12-04 10:12:34 -05:00
parent 4ed4ab95f3
commit f5d479f7ff
16 changed files with 241 additions and 10 deletions

View File

@@ -54,7 +54,10 @@ func toggle_player_profile():
func start_shift(shift_num) -> void:
current_shift = shift_num
panel.reset_timer(shifts[shift_num])
if len(shifts) < 1:
panel.reset_timer(600)
else:
panel.reset_timer(shifts[shift_num])
func end_shift() -> void:
take_screenshot()