fix: fix the goal node's "can_fail" to have the correct property.

This commit is contained in:
Björn Otgaar
2026-01-06 14:47:56 +01:00
parent 216b136a75
commit 508fa48be6
2 changed files with 7 additions and 6 deletions

View File

@@ -9,5 +9,5 @@ export const GoalNodeDefaults: GoalNodeData = {
description: "",
achieved: false,
hasReduce: true,
can_fail: true,
can_fail: false,
};