Last World Played
{Object.entries(lastPlayedSounds.lastServerPlayed).map(([key, value]) => {
if (!showMuted && mutedSounds.includes(key)) return null as never
return [key, value.count] as const
}).filter(Boolean).sort((a, b) => b[1] - a[1]).slice(0, 20).map(([key, count]) => {
return {count}
})}
Last Client Played
{lastPlayedSounds.lastClientPlayed.map((key) => {
if (!showMuted && mutedSounds.includes(key)) return null as never
return
})}