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.