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

@ -72,7 +72,7 @@ namespace Server.Mobiles
foreach ( Mobile m in this.GetMobilesInRange( 5 ) )
{
if ( m.Player && m.Alive && !m.IsDeadBondedPet && m.Karma <= 0 )
if ( m.Player && m.Alive && !m.IsDeadBondedPet && m.Karma <= 0 && m.AccessLevel < AccessLevel.Counselor )
list.Add( m );
}

View file

@ -42,7 +42,7 @@ namespace Server.Mobiles
int level;
double random = Utility.RandomDouble();
if ( 0.1 >= random )
if ( 0.05 >= random )
level = 20;
else if ( 0.4 >= random )
level = 15;