1
0

Fixed the  sign bug

git-svn-id: http://mc-server.googlecode.com/svn/trunk@168 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
faketruth 2012-01-22 21:22:54 +00:00
parent 738b1b3467
commit 796a9e356e

View File

@ -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;
}