diff --git a/README.md b/README.md index 7e2fe9e..9a3d71d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Made in Godot 4.2.1 for eevee's [Strawberry Jam 8](https://itch.io/jam/strawberr ## Attributions -See [`licenses.txt`](/licenses.txt). +See [`attributions.txt`](/attributions.txt). ## Copyright diff --git a/licenses.txt b/attributions.txt similarity index 100% rename from licenses.txt rename to attributions.txt diff --git a/scenes/screens/main_menu.gd b/scenes/screens/main_menu.gd index 16b778d..5bc1682 100644 --- a/scenes/screens/main_menu.gd +++ b/scenes/screens/main_menu.gd @@ -75,7 +75,7 @@ func init_credits(): func show_licenses(): if not $CanvasLayer/LicensesWindow/RichTextLabel.text: - $CanvasLayer/LicensesWindow/RichTextLabel.text = FileAccess.open("res://licenses.txt", FileAccess.READ).get_as_text() + $CanvasLayer/LicensesWindow/RichTextLabel.text = FileAccess.open("res://attributions.txt", FileAccess.READ).get_as_text() advance_sfx() $CanvasLayer/LicensesWindow.show()