diff --git a/client/pages/ProfilesDirectory.tsx b/client/pages/ProfilesDirectory.tsx index 9ebb8528..c3cf551c 100644 --- a/client/pages/ProfilesDirectory.tsx +++ b/client/pages/ProfilesDirectory.tsx @@ -48,13 +48,21 @@ interface ProfileCardProps { const ProfileCard = ({ profile }: ProfileCardProps) => { const realmStyle = realmBadgeStyles[profile.user_type] || "bg-aethex-500 text-white"; + const isGodMode = (profile.level ?? 1) >= 100; return ( -
- - {profile.user_type.replace("_", " ")} - +
+
+ + {profile.user_type.replace("_", " ")} + + {isGodMode && ( + + GOD Mode + + )} +