Skip to content

Commit

Permalink
Fix wrong quest values in flowerpentagram4, reported by Cassy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoelke committed Jun 10, 2013
1 parent ec951e4 commit 6fec3f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions world/map/npc/055-1/flowerpentagram4.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

if (OrumQuest >= 31) goto L_PlacedFifthFlower;

if (OrumQuest > 27) goto L_PlacedFourthFlower;
if (OrumQuest == 27) goto L_FourthFlower;
if (OrumQuest > 26) goto L_PlacedFourthFlower;
if (OrumQuest == 26) goto L_FourthFlower;

message strcharinfo(0), "Something is odd with this place.";
end;
Expand Down Expand Up @@ -41,7 +41,7 @@ L_Place:
delitem "YellowSummonFlower", 1;
mes "Worried about what will leak from the astral plane this time, you prepare yourself and put the flower in place.";
mes "As expected you feel the magical tension building up. They're coming.";
set OrumQuest, 28;
set OrumQuest, 27;
close2;
areamonster "055-1.gat", 133, 87, 144, 99, "", 1105, 1, "#FlowerPentagram4::OnSquirrelDeath";
areamonster "055-1.gat", 133, 87, 144, 99, "", 1106, 1, "#FlowerPentagram4::OnMushroomDeath";
Expand Down

0 comments on commit 6fec3f1

Please sign in to comment.