This commit is contained in:
parent
d444b9ba5c
commit
bb4fad05ec
5 changed files with 15 additions and 19 deletions
|
|
@ -467,7 +467,7 @@ namespace Server.Items
|
|||
{
|
||||
MultiTileEntry entry = mcl.List[i];
|
||||
|
||||
int itemID = entry.m_ItemID & 0x3FFF;
|
||||
int itemID = entry.m_ItemID;
|
||||
|
||||
if ( itemID >= 0xBA3 && itemID <= 0xC0E )
|
||||
{
|
||||
|
|
@ -563,7 +563,7 @@ namespace Server.Items
|
|||
{
|
||||
HousePlacementEntry e = (HousePlacementEntry)list[i];
|
||||
|
||||
if ( e.m_MultiID == (house.ItemID & 0x3FFF) )
|
||||
if ( e.m_MultiID == house.ItemID )
|
||||
return e;
|
||||
}
|
||||
}
|
||||
|
|
@ -571,7 +571,7 @@ namespace Server.Items
|
|||
{
|
||||
Hashtable table = (Hashtable)obj;
|
||||
|
||||
obj = table[house.ItemID & 0x3FFF];
|
||||
obj = table[house.ItemID];
|
||||
|
||||
if ( obj is HousePlacementEntry )
|
||||
return (HousePlacementEntry)obj;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue