mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Remove the hint that ai-rejoin isn't supported
This commit is contained in:
parent
b3552ebccb
commit
3549cc1e6c
1 changed files with 9 additions and 14 deletions
|
|
@ -24,22 +24,17 @@ class OutOfSyncNetwork extends SessionMessageBox
|
|||
translateWithContext("Out-Of-Sync", "Your game state is identical to the hosts game state.") :
|
||||
translateWithContext("Out-Of-Sync", "Your game state differs from the hosts game state."),
|
||||
|
||||
""
|
||||
"",
|
||||
translateWithContext("Out-Of-Sync", "Ensure all players use the same mods."),
|
||||
translateWithContext("Out-Of-Sync", 'Click on "Report a Bug" in the main menu to help fix this.'),
|
||||
sprintf(translateWithContext("Out-Of-Sync", "Replay saved to %(filepath)s"), {
|
||||
"filepath": escapeText(msg.path_replay)
|
||||
}),
|
||||
sprintf(translateWithContext("Out-Of-Sync", "Dumping current state to %(filepath)s"), {
|
||||
"filepath": escapeText(msg.path_oos_dump)
|
||||
})
|
||||
];
|
||||
|
||||
if (msg.turn > 1 && g_InitAttributes.settings.PlayerData.some(pData => pData && pData.AI))
|
||||
txt.push(translateWithContext("Out-Of-Sync", "Rejoining Multiplayer games with AIs is not supported yet!"));
|
||||
else
|
||||
txt.push(
|
||||
translateWithContext("Out-Of-Sync", "Ensure all players use the same mods."),
|
||||
translateWithContext("Out-Of-Sync", 'Click on "Report a Bug" in the main menu to help fix this.'),
|
||||
sprintf(translateWithContext("Out-Of-Sync", "Replay saved to %(filepath)s"), {
|
||||
"filepath": escapeText(msg.path_replay)
|
||||
}),
|
||||
sprintf(translateWithContext("Out-Of-Sync", "Dumping current state to %(filepath)s"), {
|
||||
"filepath": escapeText(msg.path_oos_dump)
|
||||
}));
|
||||
|
||||
this.Caption = txt.join("\n");
|
||||
this.display();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue