chore: move quest failure explanation above quest list

This commit is contained in:
2026-03-19 21:12:16 -07:00
committed by Naomi Carrigan
parent 81ae1f18e1
commit 72aba8158f
+5 -2
View File
@@ -148,8 +148,7 @@ const QuestCard = ({
&& <p className="quest-failure-chance">
{"🎲 "}
{String(Math.round((zoneFailureChance[quest.zoneId] ?? 0) * 100))}
{"% failure chance — if failed, the quest resets"}
{" and must be retried."}
{"% failure chance"}
</p>
}
{quest.status === "available" && quest.lastFailedAt !== undefined
@@ -307,6 +306,10 @@ const QuestPanel = (): JSX.Element => {
zones={zones}
/>
<p className="quest-failure-note">
{"⚠️ If a quest fails, it resets with no rewards — you must retry."}
</p>
<div className="quest-list">
{visibleQuests.map((quest) => {
return (