Fix NetworkMessage OBOE

This commit is contained in:
DankParrot 2020-07-31 22:58:16 -07:00
parent e8cfc0c1f8
commit 2e8ed73cc8
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ namespace Feather
inline void WriteString(const char* string, int32_t length)
{
int32_t stringSize = length + 1;
int32_t stringSize = length;
WriteVarInt(stringSize);
WriteData(string, stringSize);
}