From 0b53c2505cbea2772e72fbd0f73d1aba3d726ba1 Mon Sep 17 00:00:00 2001 From: Chris Vickery Date: Mon, 15 Jan 2024 13:06:36 -0800 Subject: [PATCH] linting and update text to reflect that the game is under development again --- src/game/index.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/game/index.tsx b/src/game/index.tsx index d6364e4..ccf30d9 100644 --- a/src/game/index.tsx +++ b/src/game/index.tsx @@ -44,7 +44,7 @@ export default function Home(): JSX.Element { const [token, setToken] = useToken(); const { data, loading, error } = useMeQuery(); const [selectedTab, setSelectedTab] = useState( - terminalRoute ?? "play" + terminalRoute ?? "play", ); const { data: leaderboardData } = useLeaderboardQuery({ pollInterval: 30000, @@ -89,7 +89,7 @@ export default function Home(): JSX.Element { } const hasUpgradedAutomation = !!hero?.inventory.find((item) => - itemUpgradesAutomation(item.baseItem) + itemUpgradesAutomation(item.baseItem), ); return ( @@ -141,9 +141,10 @@ export default function Home(): JSX.Element { Welcome to Proof of Combat! - This game is no longer being developed actively, so don't expect things - to change very often. Sometimes I jump back in and code a little, check - the github for more details. + This game is once again being developed actively. It's been + a long time coming and there's a lot of major changes to the + underlying engine in order to unlock cooler and more + interesting mechanics for the game. @@ -159,15 +160,18 @@ export default function Home(): JSX.Element { - If you need help finding things,{" "} + A great deal of the game is undocumented, but the parts + which are documented can be found,{" "} - check the wiki + in the wiki + . The game is nearly impossible to 100% out without + consulting the wiki.