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:
Griatch 2014-08-10 00:01:46 +02:00
parent fdf5c723d2
commit dbc46a372c

View file

@ -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))