diff options
author | tux9th <mr.x@aon.at> | 2013-09-15 00:35:30 +0200 |
---|---|---|
committer | tux9th <mr.x@aon.at> | 2013-09-16 20:38:52 +0200 |
commit | 4c028b6871c7d1deacfe9bdb99781d263b1810f9 (patch) | |
tree | 2b0026a4cdc5d891e02441121f340cc77635f461 | |
parent | 2388bd96403ad43c43080f8a7bf8f2bf8050cc73 (diff) | |
download | serverdata-4c028b6871c7d1deacfe9bdb99781d263b1810f9.tar.gz serverdata-4c028b6871c7d1deacfe9bdb99781d263b1810f9.tar.bz2 serverdata-4c028b6871c7d1deacfe9bdb99781d263b1810f9.tar.xz serverdata-4c028b6871c7d1deacfe9bdb99781d263b1810f9.zip |
Orum fix:
* no longer banishes people with OrumQuest > 32; Reported by Fortunato.
* fix off by 1 error at first minigame.
-rw-r--r-- | world/map/npc/017-4/orum.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/017-4/orum.txt b/world/map/npc/017-4/orum.txt index 950b8768..6335bd9b 100644 --- a/world/map/npc/017-4/orum.txt +++ b/world/map/npc/017-4/orum.txt @@ -47,7 +47,7 @@ set @REWARD_MONEY, 100000; set @REWARD_EXP, 100000; - if (OrumQuest == 32) goto L_Done; + if (OrumQuest > 31) goto L_Done; if (OrumQuest == 31) goto L_PlacedFifthFlower; if (OrumQuest == 30) goto L_PlaceFifthFlower; @@ -322,7 +322,7 @@ L_EasyMinigame: L_EasyCheck: set @bubblingLevel, @bubblingLevel + 3 - rand(7); - if (@bubblingLevel < 22) + if (@bubblingLevel < 21) goto L_EasyTooEarly; if (@bubblingLevel > 27) goto L_EasyTooLate; |