From b75ad65493f601518a6fd9ced90dc21f0880dfea Mon Sep 17 00:00:00 2001 From: Dan9550 <56kflyingtoaster@gmail.com> Date: Thu, 25 Jul 2013 06:57:09 +1000 Subject: [PATCH] fixed strange indentation nod01 --- OpenRA.Mods.Cnc/Missions/Nod01Script.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/OpenRA.Mods.Cnc/Missions/Nod01Script.cs b/OpenRA.Mods.Cnc/Missions/Nod01Script.cs index 9fa925cd9a..15518925e9 100644 --- a/OpenRA.Mods.Cnc/Missions/Nod01Script.cs +++ b/OpenRA.Mods.Cnc/Missions/Nod01Script.cs @@ -122,13 +122,13 @@ namespace OpenRA.Mods.Cnc.Missions } if (!world.Actors.Any(a => (a.Owner == nod) && a.IsInWorld && !a.IsDead())) - { - Action afterFMV = () => - { - Sound.StopMusic(); - MissionFailed("The Nod forces in the area have been wiped out."); - }; - Game.RunAfterDelay(0, () => Media.PlayFMVFullscreen(world, "nodlose.vqa", afterFMV)); + { + Action afterFMV = () => + { + Sound.StopMusic(); + MissionFailed("The Nod forces in the area have been wiped out."); + }; + Game.RunAfterDelay(0, () => Media.PlayFMVFullscreen(world, "nodlose.vqa", afterFMV)); } }