diff options
author | Mattes D <github@xoft.cz> | 2016-09-25 12:42:05 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-09-25 12:42:05 +0200 |
commit | e169043a841824eacebeb7db7ecb202a7d3c4b02 (patch) | |
tree | 2867c0814251c68764cae34745447d2904a2c0b3 /src/ClientHandle.cpp | |
parent | InfoReg: Don't fail if there are no commands to register. (diff) | |
download | cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.gz cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.bz2 cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.lz cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.xz cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.zst cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 303583769..21947af13 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -213,7 +213,7 @@ AString cClientHandle::FormatChatPrefix(bool ShouldAppendChatPrefixes, AString a -AString cClientHandle::FormatMessageType(bool ShouldAppendChatPrefixes, eMessageType a_ChatPrefix, const AString &a_AdditionalData) +AString cClientHandle::FormatMessageType(bool ShouldAppendChatPrefixes, eMessageType a_ChatPrefix, const AString & a_AdditionalData) { switch (a_ChatPrefix) { @@ -237,11 +237,9 @@ AString cClientHandle::FormatMessageType(bool ShouldAppendChatPrefixes, eMessage return Printf("%s: %s", a_AdditionalData.c_str(), cChatColor::LightBlue); } } + case mtMaxPlusOne: break; } - ASSERT(!"Unhandled chat prefix type!"); - #ifndef __clang__ - return ""; - #endif + return ""; } |