Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
30
Scripts/Services/Party/RemoveFromParty.cs
Normal file
30
Scripts/Services/Party/RemoveFromParty.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user