This commit is contained in:
parent
4386cbac99
commit
71e80d5949
16 changed files with 63 additions and 103 deletions
|
|
@ -20,6 +20,11 @@ namespace Server.Items
|
|||
public override void OnDoubleClick( Mobile from )
|
||||
{
|
||||
Fishing.System.BeginHarvesting( from, this );
|
||||
|
||||
Item item = from.FindItemOnLayer( Layer.OneHanded );
|
||||
|
||||
if( item != null )
|
||||
from.RemoveItem( item );
|
||||
}
|
||||
|
||||
public override void GetContextMenuEntries( Mobile from, List<ContextMenuEntry> list )
|
||||
|
|
|
|||
|
|
@ -262,7 +262,7 @@ namespace Server.Items
|
|||
val += targ.SkillsTotal / 10;
|
||||
|
||||
if ( val > 700 )
|
||||
val = 700 + ((val - 700) * (3 / 11));
|
||||
val = 700 + (int)((val - 700) * (3.0 / 11));
|
||||
|
||||
BaseCreature bc = targ as BaseCreature;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue