mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 14:26:30 +01:00
13 lines
No EOL
261 B
Python
13 lines
No EOL
261 B
Python
import time
|
|
from twisted.internet import protocol, reactor, defer
|
|
import session_mgr
|
|
|
|
"""
|
|
Holds the events scheduled in scheduler.py.
|
|
"""
|
|
|
|
def evt_check_sessions():
|
|
"""
|
|
Event: Check all of the connected sessions.
|
|
"""
|
|
session_mgr.check_all_sessions() |