fixed #992: removed spurious double-semicolons
This commit is contained in:
@@ -66,7 +66,7 @@ namespace OpenRA.FileFormats
|
||||
if (!syms.ContainsKey(t))
|
||||
throw new InvalidOperationException("Substitution `{0}` undefined".F(t));
|
||||
|
||||
yield return syms[t].ToString();;
|
||||
yield return syms[t].ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -496,7 +496,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic
|
||||
{
|
||||
var spec = NewSpectatorTemplate.Clone();
|
||||
var btn = spec.GetWidget<ButtonWidget>("SPECTATE");
|
||||
btn.OnMouseUp = _ => orderManager.IssueOrder(Order.Command("spectate"));;
|
||||
btn.OnMouseUp = _ => orderManager.IssueOrder(Order.Command("spectate"));
|
||||
spec.IsVisible = () => true;
|
||||
Players.AddChild(spec);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user