mirror of
https://github.com/evennia/evennia.git
synced 2026-03-21 23:36:30 +01:00
Fixes a side effect of the #583 solution only showing up in certain connection timing combinations related to which protocols were supported in a given client. The portal<->server handhshake exchanged the session info an extra round depending on the internal timing of the connection. Also fixed a handshake bug in the MXP initialization.
This commit is contained in:
parent
a5b4ddd1e9
commit
3eb347a076
4 changed files with 6 additions and 4 deletions
|
|
@ -344,7 +344,7 @@ class ServerSessionHandler(SessionHandler):
|
|||
|
||||
session.logged_in = True
|
||||
# sync the portal to the session
|
||||
sessdata = session.get_sync_data()
|
||||
sessdata = {"logged_in": True}
|
||||
if not testmode:
|
||||
self.server.amp_protocol.call_remote_PortalAdmin(session.sessid,
|
||||
operation=SLOGIN,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue