mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 12:37:16 +02:00
The guest account creator used the wrong number of arguments to create the bot account. Resolves #703.
This commit is contained in:
parent
50d2ebf4c7
commit
ae493a754d
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ class CmdUnconnectedConnect(MuxCommand):
|
|||
typeclass = settings.BASE_CHARACTER_TYPECLASS
|
||||
ptypeclass = settings.BASE_GUEST_TYPECLASS
|
||||
new_player = _create_player(session, playername, password,
|
||||
home, permissions, ptypeclass)
|
||||
permissions, ptypeclass)
|
||||
if new_player:
|
||||
_create_character(session, new_player, typeclass,
|
||||
home, permissions)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue