mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
Fixes game mode defaulting to Conquest when Endless mode is selected.
Patch by niektb, thanks! Fixes #3001. This was SVN commit r16146.
This commit is contained in:
parent
528ed2d15e
commit
f2d71164e6
1 changed files with 1 additions and 1 deletions
|
|
@ -1938,7 +1938,7 @@ function getVictoryConditions()
|
|||
var r = {};
|
||||
r.text = [translate("None")];
|
||||
r.data = ["endless"];
|
||||
r.scripts = [[]];
|
||||
r.scripts = [[""]];
|
||||
for (var vc in g_VictoryConditions)
|
||||
{
|
||||
r.data.push(vc);
|
||||
|
|
|
|||
Loading…
Reference in a new issue