diff options
author | BigBrotherNii <nicochr1004@gmail.com> | 2024-07-27 11:12:41 +0200 |
---|---|---|
committer | BigBrotherNii <nicochr1004@gmail.com> | 2024-07-27 11:12:41 +0200 |
commit | 6c76dd801276dd94f2655e0858c42d7e26caf5b8 (patch) | |
tree | 86e3ca24627be58827c26b01f3916f0f78903ead | |
parent | 731c55b70f6d4c29a8ddaac229272caa4bd30084 (diff) | |
download | hurrycurry-6c76dd801276dd94f2655e0858c42d7e26caf5b8.tar hurrycurry-6c76dd801276dd94f2655e0858c42d7e26caf5b8.tar.bz2 hurrycurry-6c76dd801276dd94f2655e0858c42d7e26caf5b8.tar.zst |
fixed error in credits
-rw-r--r-- | client/menu/credits.gd | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/client/menu/credits.gd b/client/menu/credits.gd index 4c553590..bcb6d394 100644 --- a/client/menu/credits.gd +++ b/client/menu/credits.gd @@ -45,8 +45,7 @@ func _ready(): super() contributors.shuffle() var cont: String - for i in contributors.size(): - cont += contributors[i]+"\n" + cont += "\n".join(contributors) var title_and_contribors: String = "[center][b]%s[/b]\n\n%s\n\n[b]%s[/b]\n" % [ tr("Hurry Curry! - a game about cooking"), tr("developed by"), @@ -75,7 +74,7 @@ func _ready(): var info: String = "[b]"+tr("For further information on")+"[/b]\n\n[table=3]" for i in links.keys(): - info += "[cell]"+i+"[/cell][cell]"+tr("by")+"[/cell][cell]"+links[i]+"[/cell]" + info += "[cell]"+i+"[/cell][cell]"+tr("visit")+"[/cell][cell]"+links[i]+"[/cell]" info += "[/table]" label.text += info + SPACER |