+ {
);
};
+// Until the player picks a starting age, every check evaluates as inaccessible,
+// so tell them why the regions look empty.
+const StartingAgePrompt = () => {
+ const { startingAge } = useStartingAge();
+
+ if (!SettingsHelper.needsStartingAgeSelection() || startingAge) {
+ return null;
+ }
+
+ return
Select starting age to see available checks.
;
+};
+
// With Closed Door of Time and a random starting age, nothing is reachable until the
// player picks starting age.
const StartingAge = () => {
@@ -425,7 +438,7 @@ const StartingAge = () => {
}
return (
-