diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-03-03 21:28:22 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-03-03 21:28:22 +0000 |
commit | b4b590d7e37154ebcccee75e600736248147586d (patch) | |
tree | 2b5678b04b736909e1b6ec49e137450291ddd7d2 /npc/instances | |
parent | 102233a1d715279fc6e4783bab98e7a8d92f9013 (diff) | |
download | hercules-b4b590d7e37154ebcccee75e600736248147586d.tar.gz hercules-b4b590d7e37154ebcccee75e600736248147586d.tar.bz2 hercules-b4b590d7e37154ebcccee75e600736248147586d.tar.xz hercules-b4b590d7e37154ebcccee75e600736248147586d.zip |
* Some bug fixing! Hoorah for me not feeling lazy!
- Fixed some issues related to the guild relay quests. (bugreport:3934)
- Disabled the warp back to moc_fild22b from mid_camp. (bugreport:3985)
- Loop in sealed shrine should disable all thorches. (bugreport:4044)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14258 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/instances')
-rw-r--r-- | npc/instances/SealedShrine.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/instances/SealedShrine.txt b/npc/instances/SealedShrine.txt index 152a87723..f9def604a 100644 --- a/npc/instances/SealedShrine.txt +++ b/npc/instances/SealedShrine.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.1 +//= 1.2 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -12,6 +12,7 @@ //===== Additional Comments: ================================= //= 1.0 First version. [L0ne_W0lf] //= 1.1 Added setquest for instance cooldown. [L0ne_W0lf] +//= 1.2 Fixed Torch#12 not being disabled. (bugreport:4044) [L0ne_w0lf] //============================================================ // Sealed Catacomb Entrance @@ -137,7 +138,7 @@ monk_test,309,146,3 script Friar Patrick#edq 412,{ disablenpc instance_npcname("Gravestone#1F_"+.@i+"T", instance_id()); disablenpc instance_npcname("Gravestone#1F_"+.@i+"F", instance_id()); } - for( set .@i, 1; .@i < 12; set .@i, .@i + 1 ) { + for( set .@i, 1; .@i <= 12; set .@i, .@i + 1 ) { disablenpc instance_npcname("Bobbing Torch#"+.@i, instance_id()); } |