mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 21:17:17 +02:00
WHO alignment fix. Whoops.
This commit is contained in:
parent
4fd5a20e2c
commit
c4597f41a1
1 changed files with 2 additions and 2 deletions
|
|
@ -292,7 +292,7 @@ def cmd_who(cdat):
|
|||
session = cdat['session']
|
||||
pobject = session.get_pobject()
|
||||
|
||||
retval = "Player Name On For Idle Room Cmds Host\n\r"
|
||||
retval = "Player Name On For Idle Room Cmds Host\n\r"
|
||||
for player in session_list:
|
||||
if not player.logged_in:
|
||||
continue
|
||||
|
|
@ -301,7 +301,7 @@ def cmd_who(cdat):
|
|||
plr_pobject = player.get_pobject()
|
||||
|
||||
retval += '%-16s%9s %4s%-3s#%-6d%5d%3s%-25s\r\n' % \
|
||||
(plr_pobject.get_name(), \
|
||||
(plr_pobject.get_name()[:25].ljust(27), \
|
||||
# On-time
|
||||
functions_general.time_format(delta_conn,0), \
|
||||
# Idle time
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue