View Single Post
  #13  
Old 02-26-2009, 10:25 AM
Theeper
Discordant
 
Join Date: May 2004
Posts: 290
Default

Thanks guys, I'll try to get the NPC trade thing and the corpse flag done when I get home tonite.

Secrets, this doesn't look proper though. You're setting a flag that is already set.

Code:
			if(interior_item->IsInstNoDrop)
			{
				interior_item->SetInstNoDrop(true);
			}
I'm wondering if you meant to do..

Code:
			if(item->IsInstNoDrop())
			{
				interior_item->SetInstNoDrop(true);
			}
Reply With Quote