Commit 3f4380d6 authored by nanahira's avatar nanahira

round pt and exp

parent 6810d4aa
Pipeline #2470 passed with stages
in 48 seconds
......@@ -1462,8 +1462,8 @@ export class AppService {
if (!user) {
return resultData;
}
resultData['exp'] = user['exp'];
resultData['pt'] = user['pt'];
resultData['exp'] = Math.floor(user['exp']);
resultData['pt'] = Math.floor(user['pt']);
resultData['entertain_win'] = user['entertain_win'];
resultData['entertain_lose'] = user['entertain_lose'];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment