Merge branch 'master' of github.com:UnknownShadow200/ClassicalSharp

This commit is contained in:
UnknownShadow200 2016-03-15 14:02:10 +11:00
commit 348fe21635

View File

@ -84,10 +84,7 @@ namespace ClassicalSharp {
} }
internal string ReadChatString( ref byte messageType, bool useMessageTypes ) { internal string ReadChatString( ref byte messageType, bool useMessageTypes ) {
if( useMessageTypes ) if( !useMessageTypes ) messageType = (byte)MessageType.Normal;
return ReadCp437String();
messageType = (byte)MessageType.Normal;
int length = GetString( false, 64 ); int length = GetString( false, 64 );
index += 64; index += 64;