Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
33
Scripts/Regions/NoHousingRegion.cs
Normal file
33
Scripts/Regions/NoHousingRegion.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Xml;
|
||||
|
||||
namespace Server.Regions
|
||||
{
|
||||
public class NoHousingRegion : BaseRegion
|
||||
{
|
||||
/* - False: this uses 'stupid OSI' house placement checking: part of the house may be placed here provided that the center is not in the region
|
||||
* - True: this uses 'smart RunUO' house placement checking: no part of the house may be in the region
|
||||
*/
|
||||
private readonly bool m_SmartChecking;
|
||||
|
||||
public NoHousingRegion(XmlElement xml, Map map, Region parent)
|
||||
: base(xml, map, parent)
|
||||
{
|
||||
ReadBoolean(xml["smartNoHousing"], "active", ref this.m_SmartChecking, false);
|
||||
}
|
||||
|
||||
[CommandProperty(AccessLevel.GameMaster)]
|
||||
public bool SmartChecking
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.m_SmartChecking;
|
||||
}
|
||||
}
|
||||
|
||||
public override bool AllowHousing(Mobile from, Point3D p)
|
||||
{
|
||||
return this.m_SmartChecking;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user