Files
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

26 lines
564 B
C#

using System;
using System.Xml;
using Server;
using Server.Mobiles;
namespace Server.Regions
{
public class TokunoDocksRegion : GuardedRegion
{
public static TokunoDocksRegion Instance { get { return m_Region; } }
private static TokunoDocksRegion m_Region;
public TokunoDocksRegion(XmlElement xml, Map map, Region parent)
: base(xml, map, parent)
{
m_Region = this;
}
public override bool AllowHousing(Mobile from, Point3D p)
{
return false;
}
}
}