From baffba9a2db2c0025d245de162e4e95233d5cd3e Mon Sep 17 00:00:00 2001 From: WarrentyExpired Date: Thu, 27 Aug 2026 21:36:07 -0400 Subject: [PATCH] #W# InnRegion --- Scripts/Regions/InnRegion.cs | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Scripts/Regions/InnRegion.cs 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 ); + } + } +}