diff --git a/Scripts/Multis/HousePlacement.cs b/Scripts/Multis/HousePlacement.cs index 9f73aac10..7aecd46da 100644 --- a/Scripts/Multis/HousePlacement.cs +++ b/Scripts/Multis/HousePlacement.cs @@ -320,16 +320,7 @@ namespace Server.Multis { Point2D yardPoint = yard[i]; - Sector sector = map.GetSector( yardPoint ); - - foreach ( BaseMulti multi in sector.Multis ) { - if ( multi is BaseBoat ) - continue; - - return HousePlacementResult.BadStatic; // Broke rule #3 - } - - /*IPooledEnumerable eable = map.GetMultiTilesAt( yardPoint.X, yardPoint.Y ); + IPooledEnumerable eable = map.GetMultiTilesAt( yardPoint.X, yardPoint.Y ); foreach ( Tile[] tile in eable ) { @@ -343,7 +334,7 @@ namespace Server.Multis } } - eable.Free();*/ + eable.Free(); } return HousePlacementResult.Valid;