mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 22:36:31 +01:00
17 lines
273 B
Python
17 lines
273 B
Python
import session_mgr
|
|
|
|
"""
|
|
Holds the events scheduled in scheduler.py.
|
|
"""
|
|
|
|
schedule = {
|
|
'check_sessions': 60,
|
|
}
|
|
|
|
lastrun = {}
|
|
|
|
def check_sessions():
|
|
"""
|
|
Check all of the connected sessions.
|
|
"""
|
|
session_mgr.check_all_sessions()
|