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