diff options
author | Hop311 <Hop3114@gmail.com> | 2023-05-12 02:21:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 02:21:09 +0200 |
commit | 398ba6f05ae1bb13e59790436bf0da299e5a399d (patch) | |
tree | 68cfc1f01f6a13067417e53d1ed8547cffbb969c /game/src/MainMenu | |
parent | c784a95478ec369fe9255622d40ac498b7a23079 (diff) | |
parent | 9ed9ee209ef9accebb9ec0d81ec58b569d680b6a (diff) |
Merge pull request #111 from OpenVic2Project/goods
Added Goods loading + mapmode
Diffstat (limited to 'game/src/MainMenu')
-rw-r--r-- | game/src/MainMenu/ReleaseInfoBox.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/MainMenu/ReleaseInfoBox.gd b/game/src/MainMenu/ReleaseInfoBox.gd index ca03af3..e363162 100644 --- a/game/src/MainMenu/ReleaseInfoBox.gd +++ b/game/src/MainMenu/ReleaseInfoBox.gd @@ -28,7 +28,7 @@ func _notification(what : int): _update_checksum_label_text() func _update_checksum_label_text() -> void: - _checksum_label.tooltip_text = tr("MAINMENU_CHECKSUM") % _checksum + _checksum_label.tooltip_text = tr("MAINMENU_CHECKSUM").format({ "checksum": _checksum }) _checksum_label.text = "(%s)" % _checksum.substr(0, 4) func _on_version_label_pressed(): |