- Fixed 'or' operator for object conditionals.
- Fixed train context menu occasionally showing the train option as available when it shouldn't be. - Fixed a crash in the documentation generator. - Added 3 new command implementors, serving as aliases for various Area usages: Range, Screen and Facet - Fixed house placement allowing placed houses to intersect other house regions.
This commit is contained in:
parent
72c4dc6018
commit
2c829d38ed
12 changed files with 174 additions and 62 deletions
|
|
@ -38,6 +38,11 @@ namespace Server.Regions
|
|||
this.GoLocation = new Point3D( house.X + ban.X, house.Y + ban.Y, house.Z + ban.Z );
|
||||
}
|
||||
|
||||
public override bool AllowHousing( Mobile from, Point3D p )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
private static Rectangle3D[] GetArea( BaseHouse house )
|
||||
{
|
||||
int x = house.X;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue