mirror of
https://github.com/modernuo/ModernUO
synced 2026-08-11 22:23:06 -04:00
26 lines
608 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|