mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 04:57:16 +02:00
Missed a tiny detail in portalsessionhandler.py
This commit is contained in:
parent
d621239ff6
commit
02ecf3d13f
1 changed files with 1 additions and 2 deletions
|
|
@ -33,10 +33,9 @@ DUMMYSESSION = namedtuple("DummySession", ["sessid"])(0)
|
|||
# -------------------------------------------------------------
|
||||
# Portal-SessionHandler class
|
||||
# -------------------------------------------------------------
|
||||
_BASE_HANDLER_CLASS = class_from_module(settings.SERVER_SESSION_HANDLER_CLASS)
|
||||
|
||||
|
||||
class PortalSessionHandler(_BASE_HANDLER_CLASS):
|
||||
class PortalSessionHandler(SessionHandler):
|
||||
"""
|
||||
This object holds the sessions connected to the portal at any time.
|
||||
It is synced with the server's equivalent SessionHandler over the AMP
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue