mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 23:06:31 +01:00
Fix channel history to yank the broadcasting of 'last', also added a "To be implemented" notice to @reload.
This commit is contained in:
parent
8a8891f63d
commit
156e409bda
2 changed files with 4 additions and 4 deletions
|
|
@ -207,7 +207,7 @@ def match_channel(command):
|
|||
raise ExitCommandHandler
|
||||
elif command.command_argument == "last":
|
||||
comsys.msg_chan_hist(command.session, cname)
|
||||
ExitCommandHandler
|
||||
raise ExitCommandHandler
|
||||
|
||||
second_arg = "%s=%s" % (cname, command.command_argument)
|
||||
command.command_string = "@cemit"
|
||||
|
|
@ -252,9 +252,7 @@ def handle(command):
|
|||
# Match against the 'idle' command.
|
||||
match_idle(command)
|
||||
# See if this is an aliased command.
|
||||
print "CMD", command.command_string, command.command_argument
|
||||
match_alias(command)
|
||||
print "CMD", command.command_string, command.command_argument
|
||||
# Check if the user is using a channel command.
|
||||
match_channel(command)
|
||||
# See if the user is trying to traverse an exit.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue