fix: wrong null check for answer

This commit is contained in:
Pihkaal
2025-06-28 15:32:10 +02:00
parent fca939fb82
commit 8a73e1b407

View File

@@ -100,7 +100,7 @@ const askForGrinders = async (quest: QuestResult) => {
} }
} }
if (!answer) throw "unreachable"; if (answer === null) throw "unreachable";
const exclude = answer const exclude = answer
.split(",") .split(",")