tidy whitespace

This commit is contained in:
Chris Forbes
2011-09-25 14:30:40 +13:00
parent cef45a890a
commit f3ee2d589b
3 changed files with 12 additions and 13 deletions

View File

@@ -34,7 +34,6 @@ namespace OpenRA.Mods.RA.Widgets.Logic
var devModeButton = Widget.RootWidget.GetWidget<ButtonWidget>("INGAME_DEVELOPERMODE_BUTTON");
devModeButton.OnClick = () => devmodeBG.Visible ^= true;
var devTrait = world.LocalPlayer.PlayerActor.Trait<DeveloperMode>();
var shroudCheckbox = devmodeBG.GetWidget<CheckboxWidget>("CHECKBOX_SHROUD");
@@ -73,7 +72,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic
devModeButton.IsVisible = () => { return world.LobbyInfo.GlobalSettings.AllowCheats; };
}
public void Order(World world, string order)
{
world.IssueOrder(new Order(order, world.LocalPlayer.PlayerActor, false));