Skip to content

Commit

Permalink
Unprofessional 101
Browse files Browse the repository at this point in the history
  • Loading branch information
zidonuke committed Dec 31, 2013
1 parent 6a84047 commit 2b1b95b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions StarryboundServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -447,15 +447,15 @@ public struct StarboundVersion

public static void sendGlobalMessage(string message)
{
sendGlobalMessage(message, "^#5dc4f4;");
sendGlobalMessage(message, "#5dc4f4");
}

public static void sendGlobalMessage(string message, string color)
{
var buffer = clients.Values.ToList();
foreach (Client client in buffer)
{
client.sendChatMessage(color + message);
client.sendChatMessage("^" + color + ";" + message);
}
}

Expand Down

0 comments on commit 2b1b95b

Please sign in to comment.