modernuo/Projects/UOContent/Targets/PickMoveTarget.cs
2021-12-24 15:53:59 -08:00

26 lines
608 B
C#

using Server.Commands.Generic;
using Server.Targeting;
namespace Server.Targets
{
public class PickMoveTarget : Target
{
public PickMoveTarget() : base(-1, false, TargetFlags.None)
{
}
protected override void OnTarget(Mobile from, object o)
{
if (!BaseCommand.IsAccessible(from, o))
{
from.SendLocalizedMessage(500447); // That is not accessible.
return;
}
if (o is Item or Mobile)
{
from.Target = new MoveTarget(o);
}
}
}
}