fix to loot right formula, shadow wisp showing the location of staff, 120 powerscroll rarity, and the fix for houses shadow tiles which I thought i had committed 5 minutes after the original commit but forgot :<

This commit is contained in:
asayre 2007-01-23 04:31:07 +00:00
parent ba23b0af0a
commit 2cbc73ee85
4 changed files with 9 additions and 4 deletions

View file

@ -4065,8 +4065,10 @@ namespace Server.Mobiles
if ( rights.Count > 0 )
{
rights[0].m_Damage = (int)(rights[0].m_Damage * 1.25); //This would be the first valid person attacking it. Gets a 25% bonus. Per 1/19/07 Five on Friday
if ( rights.Count > 1 )
rights.Sort();
rights.Sort(); //Sort by damage
int topDamage = rights[0].m_Damage;
int minDamage;