Files
abysmal-isle/Scripts/Services/Tomb of Kings/TombOfKingsRegion.cs
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

18 lines
388 B
C#

using System;
using System.Xml;
namespace Server.Regions
{
public class TombOfKingsRegion : BaseRegion
{
public TombOfKingsRegion(XmlElement xml, Map map, Region parent)
: base(xml, map, parent)
{
}
public override void AlterLightLevel(Mobile m, ref int global, ref int personal)
{
global = 0;
}
}
}