mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-10 09:47:26 +08:00
[Enhance] Support 'skill_ilith_ivy'
- Add support for the skill 'skill_ilith_ivy' - For Arcaea 4.5.0
This commit is contained in:
@@ -93,8 +93,12 @@ def users_user_put(data, user, user_id):
|
||||
u.set_name(data['name'])
|
||||
r['name'] = u.name
|
||||
if 'password' in data:
|
||||
u.set_password(data['password'])
|
||||
r['password'] = u.hash_pwd
|
||||
if data['password'] == '':
|
||||
u.password = ''
|
||||
r['password'] = ''
|
||||
else:
|
||||
u.set_password(data['password'])
|
||||
r['password'] = u.hash_pwd
|
||||
if 'email' in data:
|
||||
u.set_email(data['email'])
|
||||
r['email'] = u.email
|
||||
|
||||
Reference in New Issue
Block a user