fix: utilGame format에서 한단계 다르게 차이나는 버그 수정
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import bs from 'binary-search';
|
||||
import { clamp } from 'lodash-es';
|
||||
|
||||
const hornorMap: [number, string][] = [
|
||||
[0, '전무'],
|
||||
@@ -23,6 +22,6 @@ export function formatHonor(experience: number): string {
|
||||
if (idx >= 0) {
|
||||
return hornorMap[idx][1] ?? '?';
|
||||
}
|
||||
const uidx = clamp(-idx - 1, 0, hornorMap.length - 1);
|
||||
const uidx = (~idx) - 1;
|
||||
return hornorMap[uidx][1] ?? '?';
|
||||
}
|
||||
Reference in New Issue
Block a user