Issue information

Issue ID
#4360
Status
Working as Intended
Severity
None
Started
Hercules Elf Bot
Jul 21, 2010 0:45
Last Post
Hercules Elf Bot
Dec 25, 2011 17:06
Confirmation
N/A

Hercules Elf Bot - Jul 21, 2010 0:45

Originally posted by [b]Zwei[/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=4360

Hi, I use trunk version, and I found a bug in marriage quest.

The rings can't be traded, I check the item_trade.txt in db folder, and I found this:

Before r14060:

CODE
// Wedding Related items
2634,127,100    // Bridegroom_Ring
2635,127,100    // Bride_Ring


127 means:
1:Item can't be drop
2:Item can't be traded (nor vended)
4:Wedded partner can override restriction 2.
8:Item can't be sold to npcs
16:Item can't be placed in the cart
32:Item can't be placed in the storage
64:Item can't be placed in the guild storage


After r14060:

CODE
// Wedding Related items
2634,123,100    // Bridegroom_Ring
2635,123,100    // Bride_Ring


123 means:
1:Item can't be drop
2:Item can't be traded (nor vended)
8:Item can't be sold to npcs
16:Item can't be placed in the cart
32:Item can't be placed in the storage
64:Item can't be placed in the guild storage

And this change, make that the bridge and the groom can't trade the rings...

Fix:
CODE
// Wedding Related items
2634,127,100    // Bridegroom_Ring
2635,127,100    // Bride_Ring


In stable version it's ok, the number is 127 too.

Sincerely,
Zwei

This post has been edited by Zwei: Jul 23 2010, 10:10 AM