summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-22 22:22:54 +0100
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-22 22:22:54 +0100
commit796a9e356ebf832aefcdf0ece6ef2de28d631eed (patch)
tree5636b9c999b7df3b41be9db2b286bc8dda5bcf64
parentImproved Core's WebAmin interface a bit. (diff)
downloadcuberite-796a9e356ebf832aefcdf0ece6ef2de28d631eed.tar
cuberite-796a9e356ebf832aefcdf0ece6ef2de28d631eed.tar.gz
cuberite-796a9e356ebf832aefcdf0ece6ef2de28d631eed.tar.bz2
cuberite-796a9e356ebf832aefcdf0ece6ef2de28d631eed.tar.lz
cuberite-796a9e356ebf832aefcdf0ece6ef2de28d631eed.tar.xz
cuberite-796a9e356ebf832aefcdf0ece6ef2de28d631eed.tar.zst
cuberite-796a9e356ebf832aefcdf0ece6ef2de28d631eed.zip
-rw-r--r--source/cChatColor.cpp4
1 files changed, 2 insertions, 2 deletions
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