diff --git a/app/components/index-world.tsx b/app/components/index-world.tsx index 1ff0514..df34c60 100644 --- a/app/components/index-world.tsx +++ b/app/components/index-world.tsx @@ -28,7 +28,8 @@ export const IndexWorld = ({ metagame, population }: IndexWorldProps) => { new Date(a.locked_since ?? Date.now()).getTime() - new Date(b.locked_since ?? Date.now()).getTime() )[0]; - const nextZoneStrings = zones[nextZone.id]; + const nextZoneStrings = + worldId !== 2000 ? zones[nextZone.id] : zones["default"]; return (
@@ -87,7 +88,20 @@ export const IndexWorld = ({ metagame, population }: IndexWorldProps) => { } as any } >
-
{nextZoneStrings.name}
+
+ {worldId !== 2000 ? ( + nextZoneStrings.name + ) : ( + <> + + ??? + + + )} +
)} diff --git a/app/utils/strings.ts b/app/utils/strings.ts index b1bbc71..9dd8bb0 100644 --- a/app/utils/strings.ts +++ b/app/utils/strings.ts @@ -132,6 +132,6 @@ export const zones: Record = }, default: { name: "Unknown", - colors: ["#000000", "#000000"], + colors: ["#111111", "#cccccc"], }, };