Skip to content

Commit

Permalink
Fix an old resource link
Browse files Browse the repository at this point in the history
  • Loading branch information
MetallicCrimson committed Jan 30, 2024
1 parent 37cc544 commit c77376d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/hud.gd
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ func show_arrow():

func display_health(health):
if health == 2:
$Heart3.texture = load("res://heart_empty.png")
$Heart3.texture = load("res://resources/heart_empty.png")
elif health == 1:
$Heart2.texture = load("res://heart_empty.png")
$Heart2.texture = load("res://resources/heart_empty.png")
else:
$Heart1.texture = load("res://heart_empty.png")
$Heart1.texture = load("res://resources/heart_empty.png")


func _on_help_button_pressed():
Expand Down

0 comments on commit c77376d

Please sign in to comment.