Files
abysmal-isle/Scripts/Services/Party/RemoveFromParty.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

30 lines
866 B
C#

using System;
using Server.Engines.PartySystem;
namespace Server.ContextMenus
{
public class RemoveFromPartyEntry : ContextMenuEntry
{
private readonly Mobile m_From;
private readonly Mobile m_Target;
public RemoveFromPartyEntry(Mobile from, Mobile target)
: base(0198, 12)
{
this.m_From = from;
this.m_Target = target;
}
public override void OnClick()
{
Party p = Party.Get(this.m_From);
if (p == null || p.Leader != this.m_From || !p.Contains(this.m_Target))
return;
if (this.m_From == this.m_Target)
this.m_From.SendLocalizedMessage(1005446); // You may only remove yourself from a party if you are not the leader.
else
p.Remove(this.m_Target);
}
}
}