mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 15:26:30 +01:00
Fixed a bug in splitting long AMP messages as per #750.
This commit is contained in:
parent
fbb9f8a279
commit
c67aa4efc5
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue