mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 08:16:30 +01:00
Made charcreate not force a desc on new characters if the description is already set (such as in the typeclass).
This commit is contained in:
parent
fdf5c723d2
commit
dbc46a372c
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,7 @@ class CmdCharCreate(MuxPlayerCommand):
|
|||
player.db._playable_characters.append(new_character)
|
||||
if desc:
|
||||
new_character.db.desc = desc
|
||||
else:
|
||||
elif not new_character.db.desc:
|
||||
new_character.db.desc = "This is a Player."
|
||||
self.msg("Created new character %s. Use {w@ic %s{n to enter the game as this character." % (new_character.key, new_character.key))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue