Fixes parent references. (#15)
This commit is contained in:
parent
01d0fb75b8
commit
90ffe0ea3c
20 changed files with 55 additions and 93 deletions
|
|
@ -142,7 +142,7 @@ namespace Server.Engines.BulkOrders
|
|||
}
|
||||
}
|
||||
|
||||
public void InvalidateContainers( object parent )
|
||||
public void InvalidateContainers(IEntity parent)
|
||||
{
|
||||
if ( parent is Container c )
|
||||
{
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ namespace Server.Engines.ConPVP
|
|||
|
||||
public Mobile Thrower{ get; private set; }
|
||||
|
||||
private Mobile FindOwner(object parent)
|
||||
private Mobile FindOwner(IEntity parent)
|
||||
{
|
||||
if (parent is Item item)
|
||||
return item.RootParent as Mobile;
|
||||
|
|
|
|||
|
|
@ -455,7 +455,7 @@ namespace Server.Engines.ConPVP
|
|||
MoveToWorld(m_TeamInfo.Origin, m_TeamInfo.Game.Facet);
|
||||
}
|
||||
|
||||
private Mobile FindOwner(object parent)
|
||||
private Mobile FindOwner(IEntity parent)
|
||||
{
|
||||
if (parent is Item item)
|
||||
return item.RootParent as Mobile;
|
||||
|
|
@ -1199,4 +1199,4 @@ namespace Server.Engines.ConPVP
|
|||
m_FinishTimer = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ namespace Server.Factions
|
|||
return false;
|
||||
}
|
||||
|
||||
private Mobile FindOwner(object parent)
|
||||
private Mobile FindOwner(IEntity parent)
|
||||
{
|
||||
if (parent is Item item)
|
||||
return item.RootParent as Mobile;
|
||||
|
|
@ -453,4 +453,4 @@ namespace Server.Factions
|
|||
base.Delete();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -234,9 +234,7 @@ namespace Server.Gumps
|
|||
public object FindHouseName(BaseHouse house)
|
||||
{
|
||||
int multiID = house.ItemID;
|
||||
HousePlacementEntry[] entries;
|
||||
|
||||
entries = HousePlacementEntry.ClassicHouses;
|
||||
HousePlacementEntry[] entries = HousePlacementEntry.ClassicHouses;
|
||||
|
||||
for (int i = 0; i < entries.Length; ++i)
|
||||
if (entries[i].MultiID == multiID)
|
||||
|
|
@ -288,4 +286,4 @@ namespace Server.Gumps
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ namespace Server.Items
|
|||
if (board.IsChildOf(from.Backpack))
|
||||
return true;
|
||||
|
||||
object root = board.RootParent;
|
||||
IEntity root = board.RootParent;
|
||||
|
||||
if (root is Mobile && root != from)
|
||||
return false;
|
||||
|
|
@ -122,9 +122,7 @@ namespace Server.Items
|
|||
if (board.Deleted || board.Map != from.Map || !from.InRange(board.GetWorldLocation(), 1))
|
||||
return false;
|
||||
|
||||
BaseHouse house = BaseHouse.FindHouseAt(board);
|
||||
|
||||
return house != null && house.IsOwner(from);
|
||||
return BaseHouse.FindHouseAt(board)?.IsOwner(from) == true;
|
||||
}
|
||||
|
||||
public class DefaultEntry : ContextMenuEntry
|
||||
|
|
@ -146,4 +144,4 @@ namespace Server.Items
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -174,12 +174,7 @@ namespace Server.Items
|
|||
if (!Movable || Protected || !from.InRange(GetWorldLocation(), 2))
|
||||
return false;
|
||||
|
||||
object root = RootParent;
|
||||
|
||||
if (root is Mobile && root != from)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
return !(RootParent is Mobile && RootParent != from);
|
||||
}
|
||||
|
||||
public void ConvertToWorld(int x, int y, out int worldX, out int worldY)
|
||||
|
|
@ -381,4 +376,4 @@ namespace Server.Items
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ namespace Server.Items
|
|||
}
|
||||
else if (targeted is Item item)
|
||||
{
|
||||
object root = item.RootParent;
|
||||
IEntity root = item.RootParent;
|
||||
|
||||
if (root != null && root != from || item.Parent == from)
|
||||
{
|
||||
|
|
@ -61,10 +61,7 @@ namespace Server.Items
|
|||
}
|
||||
else if (item.Movable)
|
||||
{
|
||||
if (item.Amount > 1)
|
||||
message = "You place one item on the scale. ";
|
||||
else
|
||||
message = "You place that item on the scale. ";
|
||||
message = item.Amount > 1 ? "You place one item on the scale. " : "You place that item on the scale. ";
|
||||
|
||||
double weight = item.Weight;
|
||||
|
||||
|
|
|
|||
|
|
@ -45,17 +45,13 @@ namespace Server.Items
|
|||
int version = reader.ReadInt();
|
||||
}
|
||||
|
||||
public virtual object FindParent(Mobile from)
|
||||
public virtual IEntity FindParent(Mobile from)
|
||||
{
|
||||
Mobile m = HeldBy;
|
||||
if (HeldBy?.Holding == this)
|
||||
return HeldBy;
|
||||
|
||||
if (m != null && m.Holding == this)
|
||||
return m;
|
||||
|
||||
object obj = RootParent;
|
||||
|
||||
if (obj != null)
|
||||
return obj;
|
||||
if (RootParent != null)
|
||||
return RootParent;
|
||||
|
||||
if (Map == Map.Internal)
|
||||
return from;
|
||||
|
|
@ -74,7 +70,7 @@ namespace Server.Items
|
|||
ThrowTarget targ = from.Target as ThrowTarget;
|
||||
Stackable = false; // Scavenged explosion potions won't stack with those ones in backpack, and still will explode.
|
||||
|
||||
if (targ != null && targ.Potion == this)
|
||||
if (targ?.Potion == this)
|
||||
return;
|
||||
|
||||
from.RevealingAction();
|
||||
|
|
@ -107,7 +103,7 @@ namespace Server.Items
|
|||
if (Deleted)
|
||||
return;
|
||||
|
||||
object parent = FindParent(from);
|
||||
IEntity parent = FindParent(from);
|
||||
|
||||
if (timer == 0)
|
||||
{
|
||||
|
|
@ -272,4 +268,4 @@ namespace Server.Items
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -47,15 +47,12 @@ namespace Server.Items
|
|||
|
||||
public bool Validate()
|
||||
{
|
||||
object root = RootParent;
|
||||
if (!(RootParent is Mobile mobile) || mobile.AccessLevel >= AccessLevel)
|
||||
return true;
|
||||
|
||||
if (root is Mobile mobile && mobile.AccessLevel < AccessLevel)
|
||||
{
|
||||
Delete();
|
||||
return false;
|
||||
}
|
||||
Delete();
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public override void OnSingleClick(Mobile from)
|
||||
|
|
@ -83,4 +80,4 @@ namespace Server.Items
|
|||
return from.AccessLevel >= AccessLevel;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,9 +66,7 @@ namespace Server.Misc
|
|||
}
|
||||
else if (item.Layer == Layer.Hair || item.Layer == Layer.FacialHair)
|
||||
{
|
||||
object rootParent = item.RootParent;
|
||||
|
||||
if (rootParent is Mobile rootMobile)
|
||||
if (item.RootParent is Mobile rootMobile)
|
||||
{
|
||||
if (item.Parent != rootMobile && rootMobile.AccessLevel == AccessLevel.Player)
|
||||
{
|
||||
|
|
@ -164,4 +162,4 @@ namespace Server.Misc
|
|||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ namespace Server.SkillHandlers
|
|||
{
|
||||
Item stolen = null;
|
||||
|
||||
object root = toSteal.RootParent;
|
||||
IEntity root = toSteal.RootParent;
|
||||
Mobile mobRoot = root as Mobile;
|
||||
|
||||
StealableArtifactsSpawner.StealableInstance si = null;
|
||||
|
|
@ -215,7 +215,7 @@ namespace Server.SkillHandlers
|
|||
{
|
||||
m_Thief.SendLocalizedMessage(502710); // You can't steal that!
|
||||
}
|
||||
else if (toSteal.LootType == LootType.Newbied || toSteal.CheckBlessed(root))
|
||||
else if (toSteal.LootType == LootType.Newbied || toSteal.CheckBlessed(mobRoot))
|
||||
{
|
||||
m_Thief.SendLocalizedMessage(502710); // You can't steal that!
|
||||
}
|
||||
|
|
@ -244,7 +244,7 @@ namespace Server.SkillHandlers
|
|||
{
|
||||
m_Thief.SendLocalizedMessage(502710); // You can't steal that!
|
||||
}
|
||||
else if (mobRoot != null && !m_Thief.CanBeHarmful((Mobile)root))
|
||||
else if (mobRoot != null && !m_Thief.CanBeHarmful(mobRoot))
|
||||
{
|
||||
}
|
||||
else if (root is Corpse)
|
||||
|
|
@ -332,7 +332,7 @@ namespace Server.SkillHandlers
|
|||
from.RevealingAction();
|
||||
|
||||
Item stolen = null;
|
||||
object root = null;
|
||||
IEntity root = null;
|
||||
bool caught = false;
|
||||
|
||||
if (target is Item item)
|
||||
|
|
@ -356,7 +356,7 @@ namespace Server.SkillHandlers
|
|||
{
|
||||
m_Thief.SendLocalizedMessage(502710); // You can't steal that!
|
||||
}
|
||||
|
||||
|
||||
Mobile mobRoot = root as Mobile;
|
||||
|
||||
if (stolen != null)
|
||||
|
|
@ -395,7 +395,7 @@ namespace Server.SkillHandlers
|
|||
if (mobRoot?.Player == true && m_Thief is PlayerMobile pm &&
|
||||
IsInnocentTo(pm, mobRoot) && !IsInGuild(mobRoot))
|
||||
{
|
||||
pm.PermaFlags.Add((Mobile)root);
|
||||
pm.PermaFlags.Add(mobRoot);
|
||||
pm.Delta(MobileDelta.Noto);
|
||||
}
|
||||
}
|
||||
|
|
@ -484,4 +484,4 @@ namespace Server.SkillHandlers
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ namespace Server.Spells
|
|||
return true;
|
||||
}
|
||||
|
||||
public virtual bool OnCasterUsingObject(object o)
|
||||
public virtual bool OnCasterUsingObject(IEntity entity)
|
||||
{
|
||||
if (State == SpellState.Sequencing)
|
||||
Disturb(DisturbType.UseRequest);
|
||||
|
|
|
|||
|
|
@ -42,8 +42,6 @@ namespace Server.Spells.Third
|
|||
{
|
||||
SpellHelper.Turn(Caster, item);
|
||||
|
||||
object root = item.RootParent;
|
||||
|
||||
if (!item.IsAccessibleTo(Caster))
|
||||
{
|
||||
item.OnDoubleClickNotAccessible(Caster);
|
||||
|
|
@ -51,7 +49,7 @@ namespace Server.Spells.Third
|
|||
else if (!item.CheckItemUse(Caster, item))
|
||||
{
|
||||
}
|
||||
else if (root is Mobile && root != Caster)
|
||||
else if (item.RootParent is Mobile && item.RootParent != Caster)
|
||||
{
|
||||
item.OnSnoop(Caster);
|
||||
}
|
||||
|
|
@ -104,4 +102,4 @@ namespace Server
|
|||
{
|
||||
void OnTelekinesis(Mobile from);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue