Servers fixes

This commit is contained in:
Prospector
2025-06-03 16:15:57 -07:00
parent 3f77ab19ed
commit 4e8ebb5e5c
8 changed files with 66 additions and 29 deletions

View File

@@ -343,13 +343,13 @@ export const getArrayOrString = (x: string[] | string): string[] => {
}
export function getPingLevel(ping: number) {
if (ping < 150) {
if (ping < 120) {
return 5
} else if (ping < 300) {
} else if (ping < 200) {
return 4
} else if (ping < 600) {
} else if (ping < 300) {
return 3
} else if (ping < 1000) {
} else if (ping < 400) {
return 2
} else {
return 1