From 796a9e356ebf832aefcdf0ece6ef2de28d631eed Mon Sep 17 00:00:00 2001 From: faketruth Date: Sun, 22 Jan 2012 21:22:54 +0000 Subject: =?UTF-8?q?Fixed=20the=20=C3=82=20sign=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://mc-server.googlecode.com/svn/trunk@168 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cChatColor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/cChatColor.cpp') diff --git a/source/cChatColor.cpp b/source/cChatColor.cpp index 4f955dcb7..450bb4ab3 100644 --- a/source/cChatColor.cpp +++ b/source/cChatColor.cpp @@ -1,6 +1,6 @@ #include "cChatColor.h" -const std::string cChatColor::Color = "§"; +const std::string cChatColor::Color = "\xa7"; // Old color was "\xc2\xa7" or in other words: "§" const std::string cChatColor::Delimiter = "\xa7"; const std::string cChatColor::Black = cChatColor::Color + "0"; const std::string cChatColor::Navy = cChatColor::Color + "1"; @@ -21,5 +21,5 @@ const std::string cChatColor::White = cChatColor::Color + "f"; const std::string cChatColor::MakeColor( char a_Color ) { - return cChatColor::Delimiter + a_Color; + return cChatColor::Color + a_Color; } \ No newline at end of file -- cgit v1.2.3