mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 09:46:32 +01:00
24 lines
475 B
Python
24 lines
475 B
Python
|
|
import session_mgr
|
||
|
|
import commands_privileged
|
||
|
|
import commands_general
|
||
|
|
import commands_comsys
|
||
|
|
import commands_unloggedin
|
||
|
|
"""
|
||
|
|
Comsys functions.
|
||
|
|
"""
|
||
|
|
|
||
|
|
def set_new_title(channel, player, title):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def get_com_who(channel, muted=False, disconnected=False):
|
||
|
|
"""
|
||
|
|
Get all users on a channel.
|
||
|
|
|
||
|
|
If muted = True, return users who have it muted as well.
|
||
|
|
If disconnected = True, return users who are not connected as well.
|
||
|
|
"""
|
||
|
|
pass
|
||
|
|
|
||
|
|
def get_user_channels(player):
|
||
|
|
pass
|