diff --git a/evennia/server/amp.py b/evennia/server/amp.py index 8c3998b0d2..5f3fecfcc3 100644 --- a/evennia/server/amp.py +++ b/evennia/server/amp.py @@ -345,7 +345,7 @@ class AMPProtocol(amp.AMP): return [] else: # all parts in place - deserialize it - return loads(_MSGBUFFER.pop(hashid) + data) + return loads("".join(_MSGBUFFER.pop(hashid)) + data) # Message definition + helper methods to call/create each message type