From 40224b66b0eb03e3f1f3afb17d1f683b18c3ec93 Mon Sep 17 00:00:00 2001 From: Tarandeep Shergill Date: Tue, 16 Oct 2012 13:53:57 -0700 Subject: [PATCH] [Fix] BondedPlayer = to incorrect index number In case BondItemReport is used in the future. This is the fix. Index 2 is equal to oPlayer. --- kod/object/item.kod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kod/object/item.kod b/kod/object/item.kod index 8ca9b41c11..28009428bf 100644 --- a/kod/object/item.kod +++ b/kod/object/item.kod @@ -392,7 +392,7 @@ messages: { lData = Send(self,@GetAttributeData,#ItemAtt=IA_BONDED); Send(Send(SYS,@FindSpellByNum,#num=SID_BOND),@BondedItemReport, - #BondedItem=self,#BondedPlayer=Nth(lData,3), + #BondedItem=self,#BondedPlayer=Nth(lData,2), #BondedItemOwner=what); }