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:
parent
ba23b0af0a
commit
2cbc73ee85
4 changed files with 9 additions and 4 deletions
|
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue