diff options
author | Emistry <Equinox1991@gmail.com> | 2015-08-31 16:30:03 +0800 |
---|---|---|
committer | Emistry <Equinox1991@gmail.com> | 2015-08-31 16:30:03 +0800 |
commit | e6d9b557c979954d49f80d180696d0fa50ff1db0 (patch) | |
tree | 6ca80d144a125a3b5a8012da64bcc0b99cad930c /npc/re/instances | |
parent | 4b1fad173be8b519fc27676d26c96b0f106cee11 (diff) | |
download | hercules-e6d9b557c979954d49f80d180696d0fa50ff1db0.tar.gz hercules-e6d9b557c979954d49f80d180696d0fa50ff1db0.tar.bz2 hercules-e6d9b557c979954d49f80d180696d0fa50ff1db0.tar.xz hercules-e6d9b557c979954d49f80d180696d0fa50ff1db0.zip |
Fixed issue #670
Ancient Golden Decoration which is upper headgear.
Diffstat (limited to 'npc/re/instances')
-rw-r--r-- | npc/re/instances/WolfchevLaboratory.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/re/instances/WolfchevLaboratory.txt b/npc/re/instances/WolfchevLaboratory.txt index 6eadd612e..08ac36161 100644 --- a/npc/re/instances/WolfchevLaboratory.txt +++ b/npc/re/instances/WolfchevLaboratory.txt @@ -837,7 +837,7 @@ lhz_cube,233,24,4 script Sorcerer#Bio4Reward 4_M_UMDANCEKID,{ mes "[Pudding]"; mes "OKAY! In which equipment you want to dwell the power?"; next; - setarray .@parts[0], EQI_ARMOR, EQI_HAND_L, EQI_HAND_R, EQI_GARMENT, EQI_ACC_L, EQI_ACC_R, EQI_HEAD_LOW; + setarray .@parts[0], EQI_ARMOR, EQI_HAND_L, EQI_HAND_R, EQI_GARMENT, EQI_ACC_L, EQI_ACC_R, EQI_HEAD_TOP; for(.@i = 0; .@i < 7; .@i++) { if(!getequipisequiped(.@parts[.@i])) { switch(.@i) { @@ -936,14 +936,14 @@ lhz_cube,233,24,4 script Sorcerer#Bio4Reward 4_M_UMDANCEKID,{ .@position = EQI_ACC_R; break; case 8: - if(!getequipisequiped(EQI_HEAD_LOW)) { + if(!getequipisequiped(EQI_HEAD_TOP)) { mes "[Pudding]"; mes "Hey.. Are you not wearing any Helm?"; close2; enable_items; end; } - .@position = EQI_HEAD_LOW; + .@position = EQI_HEAD_TOP; break; } .@refine_count = getequiprefinerycnt(.@position); |