#W# Region work.

This commit is contained in:
WarrentyExpired 2026-07-07 13:42:31 -04:00
parent 26c6feefa8
commit 7c0f31e661
2 changed files with 21 additions and 12 deletions

View file

@ -34,5 +34,14 @@ namespace Server.Regions
{
return TimeSpan.Zero;
}
public override void OnEnter( Mobile m )
{
base.OnEnter( m );
if ( m is PlayerMobile )
{
m.SendMessage( "You have entered the safty of {0}.", this.Name);
}
}
}
}