summaryrefslogtreecommitdiff
path: root/world/map/npc/functions/undead_debug.txt
diff options
context:
space:
mode:
authorCassy1 <cassy.tmw@gmail.com>2014-12-28 15:15:33 +0100
committerCassy1 <cassy.tmw@gmail.com>2014-12-28 15:15:33 +0100
commit4634393244044fc583697e82fb15905bed1f4feb (patch)
tree279946dbab75c96c1e40b3aa01707727604e231a /world/map/npc/functions/undead_debug.txt
parent2c09797ebd2c03b2cbe9a458f8ea8d1fbd04ccff (diff)
downloadserverdata-4634393244044fc583697e82fb15905bed1f4feb.tar.gz
serverdata-4634393244044fc583697e82fb15905bed1f4feb.tar.bz2
serverdata-4634393244044fc583697e82fb15905bed1f4feb.tar.xz
serverdata-4634393244044fc583697e82fb15905bed1f4feb.zip
Fixed the mixed up item requirements
Diffstat (limited to 'world/map/npc/functions/undead_debug.txt')
-rw-r--r--world/map/npc/functions/undead_debug.txt8
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;