mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 04:57:16 +02:00
Turned off the extra look when logging in with the evmenu_login contrib.
This commit is contained in:
parent
68e5c4d283
commit
7d8dbaf775
1 changed files with 4 additions and 1 deletions
|
|
@ -195,6 +195,7 @@ def password(caller, string_input):
|
|||
# We are OK, log us in.
|
||||
text = ""
|
||||
options = {}
|
||||
caller.msg("", options={"echo": True})
|
||||
caller.sessionhandler.login(caller, player)
|
||||
|
||||
return text, options
|
||||
|
|
@ -336,6 +337,7 @@ def create_password(caller, string_input):
|
|||
else:
|
||||
text = ""
|
||||
caller.msg("|gWelcome, your new account has been created!|n")
|
||||
caller.msg("", options={"echo": True})
|
||||
caller.sessionhandler.login(caller, new_player)
|
||||
|
||||
return text, options
|
||||
|
|
@ -381,4 +383,5 @@ class CmdUnloggedinLook(Command):
|
|||
def func(self):
|
||||
"Execute the menu"
|
||||
EvMenu(self.caller, "evennia.contrib.evmenu_login",
|
||||
startnode="start", auto_look=False, auto_quit=False, node_formatter=_formatter)
|
||||
startnode="start", auto_look=False, auto_quit=False,
|
||||
cmd_on_exit=None, node_formatter=_formatter)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue