diff options
author | Wushin <pasekei@gmail.com> | 2015-01-07 21:29:36 -0600 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-01-07 21:29:36 -0600 |
commit | c70d115fe58d9aebb7e0b3d66404f4384f7188dc (patch) | |
tree | d5371f9e82a65b12896611c2707ca3abc662ad44 /world/map/npc/functions | |
parent | dd2f43ac3a5d97734291cb569cbf3636c30319e0 (diff) | |
parent | 4634393244044fc583697e82fb15905bed1f4feb (diff) | |
download | serverdata-c70d115fe58d9aebb7e0b3d66404f4384f7188dc.tar.gz serverdata-c70d115fe58d9aebb7e0b3d66404f4384f7188dc.tar.bz2 serverdata-c70d115fe58d9aebb7e0b3d66404f4384f7188dc.tar.xz serverdata-c70d115fe58d9aebb7e0b3d66404f4384f7188dc.zip |
Merge pull request #233 from Cassy1/Crypt-minibosses
Fixed the mixed up item requirements
Diffstat (limited to 'world/map/npc/functions')
-rw-r--r-- | world/map/npc/functions/undead_debug.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/world/map/npc/functions/undead_debug.txt b/world/map/npc/functions/undead_debug.txt index a49fcd76..992cbc97 100644 --- a/world/map/npc/functions/undead_debug.txt +++ b/world/map/npc/functions/undead_debug.txt @@ -53,26 +53,26 @@ L_KrukanItems: L_RazhaItems: if ((checkweight("Soul", 3) == 0) - || (checkweight("RottenRags", 5) == 0) + || (checkweight("DiseasedHeart", 5) == 0) || (checkweight("UndeadEye", 5) == 0) || (checkweight("UndeadEar", 5) == 0) || (@inventorylist_count == 100)) goto L_InventoryNoSpace; getitem "Soul", 3; - getitem "RottenRags", 5; + getitem "DiseasedHeart", 5; getitem "UndeadEye", 5; getitem "UndeadEar", 5; goto L_Main; L_TeroganItems: if ((checkweight("Soul", 5) == 0) - || (checkweight("DiseasedHeart", 5) == 0) + || (checkweight("RottenRags", 5) == 0) || (checkweight("UndeadEye", 5) == 0) || (checkweight("UndeadEar", 5) == 0) || (@inventorylist_count == 100)) goto L_InventoryNoSpace; getitem "Soul", 5; - getitem "DiseasedHeart", 5; + getitem "RottenRags", 5; getitem "UndeadEye", 5; getitem "UndeadEar", 5; goto L_Main; |