mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 07:27:17 +02:00
Fixed player creation, removing FIRST_LOGIN flag on character (keeping it on player)
This commit is contained in:
parent
71346dcc67
commit
db8af97ab2
3 changed files with 13 additions and 7 deletions
|
|
@ -908,8 +908,8 @@ def init_new_player(player):
|
|||
"""
|
||||
# the FIRST_LOGIN flags are necessary for the system to call
|
||||
# the relevant first-login hooks.
|
||||
if player.character:
|
||||
player.character.db.FIRST_LOGIN = True
|
||||
#if player.character:
|
||||
# player.character.db.FIRST_LOGIN = True
|
||||
player.db.FIRST_LOGIN = True
|
||||
|
||||
def string_similarity(string1, string2):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue