From 0888ab9b862a0aaa05e5e66f5adb5e3357a8999a Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Tue, 22 Dec 2020 13:08:46 -0800 Subject: [PATCH] fix(core): Fixes object property list not big enough exception (#358) Bumps release version --- Projects/Server/ObjectPropertyList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Server/ObjectPropertyList.cs b/Projects/Server/ObjectPropertyList.cs index aaf410ee2..2bcf0900e 100644 --- a/Projects/Server/ObjectPropertyList.cs +++ b/Projects/Server/ObjectPropertyList.cs @@ -112,7 +112,7 @@ namespace Server int strLength = m_Encoding.GetByteCount(arguments); int length = _position + 6 + strLength; - if (length > _buffer.Length) + while (length > _buffer.Length) { Flush(); }