Add @who command - show connected players with location and idle time

This commit is contained in:
Alexander Whitestone
2026-04-13 04:13:03 -04:00
parent 67cc7240b7
commit d36660e9eb
2 changed files with 71 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ from evennia import default_cmds
from commands.command import (
CmdExamine, CmdRooms,
CmdStatus, CmdMap, CmdAcademy,
CmdSmell, CmdListen,
CmdSmell, CmdListen, CmdWho,
)
@@ -45,6 +45,7 @@ class CharacterCmdSet(default_cmds.CharacterCmdSet):
self.add(CmdAcademy)
self.add(CmdSmell)
self.add(CmdListen)
self.add(CmdWho)
class AccountCmdSet(default_cmds.AccountCmdSet):