fixed typo

This commit is contained in:
Sascha Biedermann
2013-03-28 23:57:46 +01:00
parent 1eb7c62c62
commit 54a59afde0
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ namespace OpenRA.Network
public string Bot; // Bot type, null for real clients
public bool IsAdmin;
public bool IsReady { get { return State == ClientState.Ready; } }
public bool IsObeserver { get { return Slot == null; } }
public bool IsObserver { get { return Slot == null; } }
}
public class Slot

View File

@@ -44,7 +44,7 @@ namespace OpenRA.Network
{
var player = world != null ? world.FindPlayerByClient(client) : null;
var suffix = (player != null && player.WinState == WinState.Lost) ? " (Dead)" : "";
suffix = client.IsObeserver ? " (Spectator)" : suffix;
suffix = client.IsObserver ? " (Spectator)" : suffix;
Game.AddChatLine(client.ColorRamp.GetColor(0), client.Name + suffix, order.TargetString);
}
else