ModernUO/Projects/UOContent/Mobiles/Townfolk/Minter.cs
Kamron Batman d55406337f
fix: Fixes ML Escortables and codegens (#1525)
### Summary
- [X] Adds tot.json to ignore list.
- [X] Fixes bias in escortable random quest selection.
- [X] Adds New Haven specific destination/payment messages for escortable quests.
- [X] Codegens escortables.
2023-09-30 14:11:48 -07:00

12 lines
266 B
C#

using ModernUO.Serialization;
namespace Server.Mobiles;
[SerializationGenerator(0, false)]
public partial class Minter : Banker
{
[Constructible]
public Minter() => Title = "the minter";
public override NpcGuild NpcGuild => NpcGuild.MerchantsGuild;
}