Expand launcher with connections option and fixes
This commit is contained in:
parent
670bfe3641
commit
3c7b3938ed
1 changed files with 17 additions and 13 deletions
|
|
@ -486,6 +486,7 @@ ARG_OPTIONS = \
|
||||||
status - show server and portal run state
|
status - show server and portal run state
|
||||||
info - show server and portal port info
|
info - show server and portal port info
|
||||||
menu - show a menu of options
|
menu - show a menu of options
|
||||||
|
connections - show connection wizard
|
||||||
Others, like migrate, test and shell is passed on to Django."""
|
Others, like migrate, test and shell is passed on to Django."""
|
||||||
|
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
|
|
@ -2101,9 +2102,12 @@ def main():
|
||||||
elif option == "info":
|
elif option == "info":
|
||||||
query_info()
|
query_info()
|
||||||
elif option == "start":
|
elif option == "start":
|
||||||
|
init_game_directory(CURRENT_DIR, check_db=True)
|
||||||
error_check_python_modules()
|
error_check_python_modules()
|
||||||
start_evennia(args.profiler, args.profiler)
|
start_evennia(args.profiler, args.profiler)
|
||||||
elif option == "istart":
|
elif option == "istart":
|
||||||
|
init_game_directory(CURRENT_DIR, check_db=True)
|
||||||
|
error_check_python_modules()
|
||||||
start_server_interactive()
|
start_server_interactive()
|
||||||
elif option == "ipstart":
|
elif option == "ipstart":
|
||||||
start_portal_interactive()
|
start_portal_interactive()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue