mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
Fix typo that prevented the Disable Treasures label of the objectives dialog from showing the correct value.
Remove the double negation "Disable Treasure: Disabled". Differential Revision: https://code.wildfiregames.com/D523 String accepted by: Sandarac This was SVN commit r19652.
This commit is contained in:
parent
6606e89b99
commit
6b743e30b3
1 changed files with 4 additions and 2 deletions
|
|
@ -370,8 +370,10 @@ function getGameDescription(extended = false)
|
|||
});
|
||||
|
||||
titles.push({
|
||||
"label": translate("Disable Treasure"),
|
||||
"value": g_GameAttributes.settings.DisableTreasure
|
||||
"label": translate("Treasure"),
|
||||
"value": g_GameAttributes.settings.DisableTreasures ?
|
||||
translateWithContext("treasure", "Disabled") :
|
||||
translateWithContext("treasure", "If the map places it.")
|
||||
});
|
||||
|
||||
titles.push({
|
||||
|
|
|
|||
Loading…
Reference in a new issue