Split long objective strings over several lines

This commit is contained in:
Scott_NZ
2012-12-31 17:44:16 +13:00
parent 82809f27f7
commit bdb7bb97cd
3 changed files with 9 additions and 4 deletions

View File

@@ -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;