mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
The portalsessionhandler was storing the latest command time on itself rather than on the session. Should fix getting logged on despite being active.
This commit is contained in:
parent
b30e766047
commit
3c2e44346a
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ class PortalSessionHandler(SessionHandler):
|
|||
serialized before passed on.
|
||||
|
||||
"""
|
||||
self.cmd_last = time()
|
||||
session.cmd_last = time()
|
||||
self.portal.amp_protocol.call_remote_MsgPortal2Server(session.sessid,
|
||||
msg=text,
|
||||
data=kwargs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue