--> Fixed a bug preventing SoT not being spawned in Malas champion spawns (i.e. Bedlam Crypt) (http://www.uodemise.com/discussion/showthread.php?t=135520) - Added contextual menu entries to add players in party, and kicking them from house (friends can be kicked if in ML environment). Timeout to accept party invite is increased to 30 seconds as per OSI (http://www.uodemise.com/discussion/showthread.php?t=120724) - Runebeetles can be angered during taming attempts (http://www.uodemise.com/discussion/showthread.php?t=137677) - You can cook near forges (http://www.uodemise.com/discussion/showthread.php?t=137731)
23 lines
442 B
C#
23 lines
442 B
C#
using System;
|
|
using Server.Mobiles;
|
|
using Server.Engines.PartySystem;
|
|
|
|
namespace Server.ContextMenus
|
|
{
|
|
public class AddToPartyEntry : ContextMenuEntry
|
|
{
|
|
private Mobile m_From;
|
|
private Mobile m_Target;
|
|
|
|
public AddToPartyEntry( Mobile from, Mobile target ) : base( 0197, 12 )
|
|
{
|
|
m_From = from;
|
|
m_Target = target;
|
|
}
|
|
|
|
public override void OnClick()
|
|
{
|
|
Party.Invite( m_From, m_Target );
|
|
}
|
|
}
|
|
}
|