Remove mention of space in login names

This commit is contained in:
Griatch 2020-10-14 19:06:16 +02:00
parent ec140527d4
commit 9984c3f7bc
3 changed files with 5 additions and 6 deletions

View file

@ -69,13 +69,14 @@ without arguments starts a full interactive Python console.
- Make `INLINEFUNC_STACK_MAXSIZE` default visible in `settings_default.py`. - Make `INLINEFUNC_STACK_MAXSIZE` default visible in `settings_default.py`.
- Change how `ic` finds puppets; non-priveleged users will use `_playable_characters` list as - Change how `ic` finds puppets; non-priveleged users will use `_playable_characters` list as
candidates, Builders+ will use list, local search and only global search if no match found. candidates, Builders+ will use list, local search and only global search if no match found.
- Make `cmd.at_post_cmd()` always run after `cmd.func()`, even when the latter uses delays - Make `cmd.at_post_cmd()` always run after `cmd.func()`, even when the latter uses delays
with yield. with yield.
- `EvMore` support for db queries and django paginators as well as easier to override for custom - `EvMore` support for db queries and django paginators as well as easier to override for custom
pagination (e.g. to create EvTables for every page instead of splittine one table) pagination (e.g. to create EvTables for every page instead of splitting one table).
- Using `EvMore pagination`, dramatically improves performance of `spawn/list` and `scripts` listings - New `EvMore` methods `.init_pages`, `paginator` and `page_formatter` for easily customize pagination.
- Using `EvMore pagination`, dramatically improves performance of `spawn/list` and `scripts` listings
(100x speed increase for displaying 1000+ prototypes/scripts). (100x speed increase for displaying 1000+ prototypes/scripts).
- `EvMenu` now uses the more logically named `.ndb._evmenu` instead of `.ndb._menutree` to store itself. - `EvMenu` now uses the more logically named `.ndb._evmenu` instead of `.ndb._menutree` to store itself.
Both still work for backward compatibility, but `_menutree` is deprecated. Both still work for backward compatibility, but `_menutree` is deprecated.
- `EvMenu.msg(txt)` added as a central place to send text to the user, makes it easier to override. - `EvMenu.msg(txt)` added as a central place to send text to the user, makes it easier to override.
Default `EvMenu.msg` sends with OOB type="menu" for use with OOB and webclient pane-redirects. Default `EvMenu.msg` sends with OOB type="menu" for use with OOB and webclient pane-redirects.

View file

@ -294,7 +294,6 @@ You are not yet logged into the game. Commands available at this point:
|wquit|n - abort the connection |wquit|n - abort the connection
First create an account e.g. with |wcreate Anna c67jHL8p|n First create an account e.g. with |wcreate Anna c67jHL8p|n
(If you have spaces in your name, use double quotes: |wcreate "Anna the Barbarian" c67jHL8p|n
Next you can connect to the game: |wconnect Anna c67jHL8p|n Next you can connect to the game: |wconnect Anna c67jHL8p|n
You can use the |wlook|n command if you want to see the connect screen again. You can use the |wlook|n command if you want to see the connect screen again.

View file

@ -32,7 +32,6 @@ CONNECTION_SCREEN = """
If you need to create an account, type (without the <>'s): If you need to create an account, type (without the <>'s):
|wcreate <username> <password>|n |wcreate <username> <password>|n
If you have spaces in your username, enclose it in quotes.
Enter |whelp|n for more info. |wlook|n will re-show this screen. Enter |whelp|n for more info. |wlook|n will re-show this screen.
|b==============================================================|n""".format( |b==============================================================|n""".format(
settings.SERVERNAME, utils.get_evennia_version("short") settings.SERVERNAME, utils.get_evennia_version("short")