summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
Diffstat (limited to 'npc')
-rw-r--r--npc/025-2-4/tree.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/025-2-4/tree.txt b/npc/025-2-4/tree.txt
index 4d22ee54e..943c8ada7 100644
--- a/npc/025-2-4/tree.txt
+++ b/npc/025-2-4/tree.txt
@@ -39,7 +39,11 @@ function manatreeAgain {
inventoryplace Manapple, 1;
mesc l("The tree generously offer you one of its fruits.");
mesc l("You gladly accept it. But probably better not disturb it for a few days.");
- setq3 FortressQuest_ManaTree, gettimeparam(GETTIME_DAYOFMONTH)+3;
+ // If you pledged for Barbara's life, 2 days cooldown, else 3d
+ if (BARBARA_STATE == 3)
+ setq3 FortressQuest_ManaTree, gettimeparam(GETTIME_DAYOFMONTH)+2;
+ else
+ setq3 FortressQuest_ManaTree, gettimeparam(GETTIME_DAYOFMONTH)+3;
getitem Manapple, 1;
next;
return;