Set xp by level only when incoming level is different from user level #281
This commit is contained in:
parent
ccf41bec79
commit
8025c31339
@ -39,7 +39,8 @@ class UserMutation(QueryABC):
|
||||
|
||||
if "levelId" in input:
|
||||
level = self._levels.get_level_by_id(input["levelId"])
|
||||
user.xp = level.min_xp
|
||||
if user.level.id != level.id:
|
||||
user.xp = level.min_xp
|
||||
else:
|
||||
user.xp = input["xp"] if "xp" in input else user.xp
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user