mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
调整深渊排名的文案
This commit is contained in:
parent
c1b79781dd
commit
5b8b40cc16
@ -422,9 +422,9 @@ export async function uploadData(e) {
|
|||||||
let char = Character.get(ds.avatarId);
|
let char = Character.get(ds.avatarId);
|
||||||
title = `${title}:${char.name} ${(ds.value / 10000).toFixed(1)}W,`;
|
title = `${title}:${char.name} ${(ds.value / 10000).toFixed(1)}W,`;
|
||||||
if (ds.percent < 0.2) {
|
if (ds.percent < 0.2) {
|
||||||
msg.push(`${title}少于${(100 - ds.percent * 100).toFixed(1)}%的用户`)
|
msg.push(`${title}少于${(Math.max(0.1, 100 - ds.percent * 100)).toFixed(1)}%的${char.name}用户`)
|
||||||
} else {
|
} else {
|
||||||
msg.push(`${title}超过${(ds.percent * 100).toFixed(1)}%的用户`)
|
msg.push(`${title}超过${(Math.min(99.9, ds.percent * 100)).toFixed(1)}%的${char.name}用户`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
msg.push("本次深渊排行:");
|
msg.push("本次深渊排行:");
|
||||||
|
Loading…
Reference in New Issue
Block a user