diff --git a/OpenRA.Mods.RA/Missions/Allies03Script.cs b/OpenRA.Mods.RA/Missions/Allies03Script.cs index 7f10b97dbb..ecd2e19588 100644 --- a/OpenRA.Mods.RA/Missions/Allies03Script.cs +++ b/OpenRA.Mods.RA/Missions/Allies03Script.cs @@ -42,9 +42,11 @@ namespace OpenRA.Mods.RA.Missions const int AirbaseID = 1; const int GapGeneratorID = 2; - const string Evacuate = "Following the rescue of Einstein, the Allies are now being flanked from both sides. Evacuate {0} units before the remaining Allied forces in the area are wiped out."; + const string Evacuate = "Following the rescue of Einstein, the Allies are now being flanked from both sides." + + "Evacuate {0} units before the remaining Allied forces in the area are wiped out."; const string Airbase = "Destroy the nearby Soviet airbases."; - const string GapGenerator = "Einstein has recently developed a technology which allows us to obscure units from the enemy. Evacuate at least one prototype mobile gap generator intact."; + const string GapGenerator = "Einstein has recently developed a technology which allows us to obscure units from the enemy." + + "Evacuate at least one prototype mobile gap generator intact."; int unitsEvacuatedThreshold; int unitsEvacuated; diff --git a/OpenRA.Mods.RA/Missions/Allies04Script.cs b/OpenRA.Mods.RA/Missions/Allies04Script.cs index c4ba3db36b..8a6e4c828f 100644 --- a/OpenRA.Mods.RA/Missions/Allies04Script.cs +++ b/OpenRA.Mods.RA/Missions/Allies04Script.cs @@ -40,7 +40,8 @@ namespace OpenRA.Mods.RA.Missions const int InfiltrateID = 0; const int DestroyID = 1; const string Destroy = "Secure the laboratory and destroy the rest of the Soviet base. Ensure that the laboratory is not destroyed."; - const string Infiltrate = "The Soviets are currently developing a new defensive system named the \"Iron Curtain\" at their main research laboratory. Get our {0} into the laboratory undetected."; + const string Infiltrate = "The Soviets are currently developing a new defensive system named the \"Iron Curtain\" at their main research laboratory." + + "Get our {0} into the laboratory undetected."; Actor lstEntryPoint; Actor lstUnloadPoint; diff --git a/OpenRA.Mods.RA/Missions/Soviet01ClassicScript.cs b/OpenRA.Mods.RA/Missions/Soviet01ClassicScript.cs index 16cd8fdff2..54b4a480dc 100644 --- a/OpenRA.Mods.RA/Missions/Soviet01ClassicScript.cs +++ b/OpenRA.Mods.RA/Missions/Soviet01ClassicScript.cs @@ -35,7 +35,9 @@ namespace OpenRA.Mods.RA.Missions }; const int DestroyID = 0; - const string Destroy = "A pitiful excuse for resistance has blockaded itself in this village. Stalin has decided to make an example of them. Kill them all and destroy their homes. You will have Yak aircraft to use in teaching these rebels a lesson."; + const string Destroy = "A pitiful excuse for resistance has blockaded itself in this village." + + "Stalin has decided to make an example of them. Kill them all and destroy their homes." + + "You will have Yak aircraft to use in teaching these rebels a lesson."; World world;