bug fixes
pets can no longer be renamed while in jail
This commit is contained in:
parent
8150706a3c
commit
c26e081c58
12 changed files with 181 additions and 134 deletions
|
|
@ -50,6 +50,7 @@ namespace Server.Items
|
|||
public RecipeScroll( int recipeID )
|
||||
: base( 0x2831 )
|
||||
{
|
||||
m_RecipeID = recipeID;
|
||||
}
|
||||
|
||||
public RecipeScroll( Serial serial )
|
||||
|
|
|
|||
|
|
@ -43,9 +43,9 @@ namespace Server.Items
|
|||
from.Target = new BladedItemTarget( this );
|
||||
}
|
||||
|
||||
public override void OnHit( Mobile attacker, Mobile defender )
|
||||
public override void OnHit( Mobile attacker, Mobile defender, double damageBonus )
|
||||
{
|
||||
base.OnHit( attacker, defender );
|
||||
base.OnHit( attacker, defender, damageBonus );
|
||||
|
||||
if ( !Core.AOS && Poison != null && PoisonCharges > 0 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue