Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
halve sprint recovery rate
Browse files Browse the repository at this point in the history
  • Loading branch information
istamarahsan committed Aug 14, 2023
1 parent 9faa653 commit 265356a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion game.gd
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func _process(delta):
ran_out_of_sprint = true
tick_timer.wait_time = _calc_tick_interval()
else:
sprint_seconds_remaining = min(sprint_capacity_seconds, sprint_seconds_remaining + delta)
sprint_seconds_remaining = min(sprint_capacity_seconds, sprint_seconds_remaining + delta/2)

for hook in scheduler_hooks:
if ran_out_of_sprint:
Expand Down
1 change: 1 addition & 0 deletions presentation/hud/hud.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ offset_bottom = 56.0
theme_override_styles/background = SubResource("StyleBoxFlat_2snbr")
theme_override_styles/fill = ExtResource("13_wt5t2")
max_value = 1.0
step = 0.001
value = 0.5
show_percentage = false

Expand Down

0 comments on commit 265356a

Please sign in to comment.