diff options
author | Led Mitz <smoothshifter@tuta.io> | 2024-11-01 23:18:40 +0000 |
---|---|---|
committer | Led Mitz <smoothshifter@tuta.io> | 2024-11-01 23:18:40 +0000 |
commit | 88c1eef1047e59a40bbe1c03a641d938bef02c40 (patch) | |
tree | f5cabbec2e7fe4950305acf7f534048b9e1d7d5e /world | |
parent | e8e00c8b7c55212230b0a992e8bb65d1a1b5dd43 (diff) | |
download | serverdata-88c1eef1047e59a40bbe1c03a641d938bef02c40.tar.gz serverdata-88c1eef1047e59a40bbe1c03a641d938bef02c40.tar.bz2 serverdata-88c1eef1047e59a40bbe1c03a641d938bef02c40.tar.xz serverdata-88c1eef1047e59a40bbe1c03a641d938bef02c40.zip |
Correction to delitem syntax. Required 2 lines due to not being a stackable item
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/009-2/trader.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/world/map/npc/009-2/trader.txt b/world/map/npc/009-2/trader.txt index bcdc5d75..d66968e0 100644 --- a/world/map/npc/009-2/trader.txt +++ b/world/map/npc/009-2/trader.txt @@ -146,7 +146,8 @@ L_GetEamuletConfirm: L_GetEamulet: if (countitem("MagicRing") < 2) goto L_Missing; if (countitem("Bloodstone") < 13) goto L_Missing; - delitem "MagicRing", 2; + delitem "MagicRing", 1; + delitem "MagicRing", 1; delitem "Bloodstone", 13; getitem "EnchantersAmulet", 1; mes "[Trader]"; |