mirror of
https://github.com/evennia/evennia.git
synced 2026-04-01 13:37:17 +02:00
Replace the dictionary by a module path in the menu definition
This commit is contained in:
parent
60d78be90c
commit
937bd01fb8
1 changed files with 1 additions and 7 deletions
|
|
@ -328,11 +328,5 @@ class CmdUnloggedinLook(Command):
|
|||
|
||||
def func(self):
|
||||
"Execute the menu"
|
||||
menu = EvMenu(self.caller, {
|
||||
"start": start,
|
||||
"username": username,
|
||||
"password": password,
|
||||
"create_username": create_username,
|
||||
"create_password": create_password,
|
||||
},
|
||||
menu = EvMenu(self.caller, "evennia.contrib.evmenu_login",
|
||||
startnode="start", auto_quit=False, node_formatter=_formatter)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue