stop spraying all these damned parentheses where they aren't needed
This commit is contained in:
@@ -58,8 +58,8 @@ namespace OpenRA.Mods.RA.Widgets.Logic
|
|||||||
postgameText.GetText = () =>
|
postgameText.GetText = () =>
|
||||||
{
|
{
|
||||||
var state = world.LocalPlayer.WinState;
|
var state = world.LocalPlayer.WinState;
|
||||||
return (state == WinState.Undefined)? "" :
|
return state == WinState.Undefined ? "" :
|
||||||
((state == WinState.Lost)? "YOU ARE DEFEATED" : "YOU ARE VICTORIOUS");
|
(state == WinState.Lost ? "YOU ARE DEFEATED" : "YOU ARE VICTORIOUS");
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user