mirror of
https://github.com/evennia/evennia.git
synced 2026-03-24 08:46:31 +01:00
16 lines
359 B
Python
16 lines
359 B
Python
"""
|
|
This module stores session-level commands.
|
|
"""
|
|
from src.commands.cmdset import CmdSet
|
|
from src.commands.default import player
|
|
|
|
class SessionCmdSet(CmdSet):
|
|
"""
|
|
Sets up the unlogged cmdset.
|
|
"""
|
|
key = "DefaultSession"
|
|
priority = -20
|
|
|
|
def at_cmdset_creation(self):
|
|
"Populate the cmdset"
|
|
self.add(player.CmdSessions())
|