Skip to content

Commit

Permalink
Micro Updates
Browse files Browse the repository at this point in the history
Messaging update for VC++ Requirements to be inclusive of "2015-2019 (or newer)"

Sort Scenery Groups list in order of occurrence by calendar

Change unlisted JSON vehicle from "Traffic Car" to "Addon Car"
  • Loading branch information
Zacam committed Feb 18, 2022

Verified

This commit was signed with the committer’s verified signature.
beastawakens Ed Fricker
1 parent 2e9fe99 commit a5e321f
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion GameLauncher/App/Classes/LauncherCore/RPC/CarList.cs
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ public static string GetCarName(string id)
}

/* And if it's not found, do this instead */
return "Traffic Car (" + id + ")";
return "Addon Car (" + id + ")";
}
}
}
4 changes: 2 additions & 2 deletions GameLauncher/App/Languages/English_Texts.resx
Original file line number Diff line number Diff line change
@@ -410,7 +410,7 @@
<value>You can press 'OK' to continue and you will not see this message again.</value>
</data>
<data name="Redistributable_VC_32" xml:space="preserve">
<value>You do not have the 32-bit 2015-2019 VC++ Redistributable Package installed.</value>
<value>You do not have the 32-bit 2015-2019 VC++ Redistributable Package (or newer) installed.</value>
</data>
<data name="Redistributable_VC_P4" xml:space="preserve">
<value>Click OK to install it.</value>
@@ -425,7 +425,7 @@
<value>An instance of Need for Speed: World is already running</value>
</data>
<data name="Redistributable_VC_64" xml:space="preserve">
<value>You do not have the 64-bit 2015-2019 VC++ Redistributable Package installed.</value>
<value>You do not have the 64-bit 2015-2019 VC++ Redistributable Package (or newer) installed.</value>
</data>
<data name="Redistributable_VC_P6" xml:space="preserve">
<value>Failed to run package installer.\n The game will not be started.</value>
6 changes: 3 additions & 3 deletions GameLauncher/App/UI_Forms/Main_Screen/MainScreen.cs
Original file line number Diff line number Diff line change
@@ -952,6 +952,9 @@ private void ServerPick_SelectedIndexChanged(object sender, EventArgs e)
case "SCENERY_GROUP_NEWYEARS":
SceneryStatus = "Scenery: New Years";
break;
case "SCENERY_GROUP_VALENTINES":
SceneryStatus = "Scenery: Valentines";
break;
case "SCENERY_GROUP_OKTOBERFEST":
SceneryStatus = "Scenery: Oktoberfest";
break;
@@ -961,9 +964,6 @@ private void ServerPick_SelectedIndexChanged(object sender, EventArgs e)
case "SCENERY_GROUP_CHRISTMAS":
SceneryStatus = "Scenery: Christmas";
break;
case "SCENERY_GROUP_VALENTINES":
SceneryStatus = "Scenery: Valentines";
break;
default:
SceneryStatus = "Scenery: Normal";
break;

0 comments on commit a5e321f

Please sign in to comment.