Reorganizes Project (#41)
This commit is contained in:
parent
08bf44af9a
commit
3614a66aee
3499 changed files with 79 additions and 55 deletions
|
|
@ -1,45 +0,0 @@
|
|||
using Server.Commands;
|
||||
using Server.Commands.Generic;
|
||||
using Server.Targeting;
|
||||
|
||||
namespace Server.Targets
|
||||
{
|
||||
public class MoveTarget : Target
|
||||
{
|
||||
private object m_Object;
|
||||
|
||||
public MoveTarget(object o) : base(-1, true, TargetFlags.None)
|
||||
{
|
||||
m_Object = o;
|
||||
}
|
||||
|
||||
protected override void OnTarget(Mobile from, object o)
|
||||
{
|
||||
if (o is IPoint3D p)
|
||||
{
|
||||
if (!BaseCommand.IsAccessible(from, m_Object))
|
||||
{
|
||||
from.SendLocalizedMessage(500447); // That is not accessible.
|
||||
return;
|
||||
}
|
||||
|
||||
if (p is Item pItem)
|
||||
p = pItem.GetWorldTop();
|
||||
|
||||
CommandLogging.WriteLine(from, "{0} {1} moving {2} to {3}", from.AccessLevel, CommandLogging.Format(from),
|
||||
CommandLogging.Format(m_Object), new Point3D(p));
|
||||
|
||||
if (m_Object is Item item)
|
||||
{
|
||||
if (!item.Deleted)
|
||||
item.MoveToWorld(new Point3D(p), from.Map);
|
||||
}
|
||||
else if (m_Object is Mobile m)
|
||||
{
|
||||
if (!m.Deleted)
|
||||
m.MoveToWorld(new Point3D(p), from.Map);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue