Added stats for general modes

This commit is contained in:
2025-08-21 02:20:01 +02:00
parent a4bf768c83
commit b31ef97789
10 changed files with 306 additions and 109 deletions

View File

@@ -9,7 +9,7 @@ export async function validatePlayer(ign: string) {
if (!uuid) {
return {
error: true,
message: "Player not found",
message: "Player not found"
}
}
@@ -18,12 +18,13 @@ export async function validatePlayer(ign: string) {
if (!player) {
return {
error: true,
message: "Player never logged on to Hypixel",
message: "Player never logged on to Hypixel"
}
}
return {
error: false,
message: "Player found",
message: "Player found"
}
}
}