diff --git a/Scripts/Regions/InnRegion.cs b/Scripts/Regions/InnRegion.cs new file mode 100644 index 0000000..2558682 --- /dev/null +++ b/Scripts/Regions/InnRegion.cs @@ -0,0 +1,37 @@ +using System; +using System.Xml; +using Server; + +namespace Server.Regions +{ + public class InnRegion : Region + { + public InnRegion( XmlElement xml, Map map, Region parent ) : base( xml, map, parent ) + { + } + + public InnRegion( string name, Map map, int priority, params Rectangle3D[] area ) : base( name, map, priority, area ) + { + } + + public override TimeSpan GetLogoutDelay( Mobile m ) + { + return TimeSpan.Zero; + } + + public override bool AllowHousing( Mobile from, Point3D p ) + { + return false; + } + + public override void OnEnter( Mobile m ) + { + base.OnEnter( m ); + } + + public override void OnExit( Mobile m ) + { + base.OnExit( m ); + } + } +}