Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gamelist1990 committed Oct 24, 2024
1 parent 36a8ab5 commit 6fddb72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devFolder/src/command/utility/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ async function sendAllPlayersInfoToChat(player: Player): Promise<void> {

const { ping } = await getPing(targetPlayerData);

const device = 0;
const device = clientdevice(targetPlayerData);
const deviceName = device === 0 ? "Desktop" : device === 1 ? "Mobile" : device === 2 ? "Console" : "Unknown";
const dimension = getDimension(targetPlayerData);
const memoryTier = 0;
const memoryTier = getMemoryTier(targetPlayerData);
const memoryTierName = memoryTier === 0 ? "Memory:Undetermined" :
memoryTier === 1 ? "Memory:1.5GB" :
memoryTier === 2 ? "Memory:2GB" :
Expand Down

0 comments on commit 6fddb72

Please sign in to comment.