mirror of
https://github.com/Lost-MSth/Arcaea-server.git
synced 2026-02-12 19:17:26 +08:00
[Enhance][Bug fix] Support skill_maya & World mode value display bug
- Add support for the skill 'skill_maya' - Fix a bug that some characters' skill cannot display proper values in world mode progression - Fix a bug that 'skill_mithra' results in adding `prog` value instead of world mode progress - For Arcaea 4.7.0
This commit is contained in:
@@ -195,7 +195,7 @@ class ItemCharacter(UserItem):
|
||||
'''select exists(select * from user_char where user_id=? and character_id=?)''', (user.user_id, self.item_id))
|
||||
if self.c.fetchone() == (0,):
|
||||
self.c.execute(
|
||||
'''insert into user_char values(?,?,1,0,0,0)''', (user.user_id, self.item_id))
|
||||
'''insert into user_char values(?,?,1,0,0,0,0)''', (user.user_id, self.item_id))
|
||||
|
||||
|
||||
class Memory(UserItem):
|
||||
|
||||
Reference in New Issue
Block a user