From b58b712abaae8615d175829e2dafa701f9488794 Mon Sep 17 00:00:00 2001 From: Chris Vickery Date: Wed, 28 Feb 2024 23:30:47 -0800 Subject: [PATCH] use p for land types --- src/game/locations/index.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/game/locations/index.tsx b/src/game/locations/index.tsx index e8eaa06..74659fc 100644 --- a/src/game/locations/index.tsx +++ b/src/game/locations/index.tsx @@ -280,19 +280,23 @@ export function Locations(): JSX.Element | null { {specialLocation && ( - + {specialLocation.name} )} {specialLocation && ( - {specialLocation.type} + + {specialLocation.type} + )} {playerLocation && ( {playerLocation.publicOwner?.name ?? "???"}'s Settlement - {playerLocation.type} + + {playerLocation.type} + )} {!specialLocation && !playerLocation && locationDetails && ( @@ -300,7 +304,7 @@ export function Locations(): JSX.Element | null { Wilderness - + {locationDetails.terrain.terrain} @@ -310,7 +314,9 @@ export function Locations(): JSX.Element | null {   - loading... + + loading... + )}