fix: Fixes missing codegen for ShipWright (#1316)

This commit is contained in:
Kamron Batman 2022-12-30 10:48:42 -08:00 committed by GitHub
parent 40c6ed2cb7
commit 33aa257344
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,4 @@
{
"version": 0,
"type": "Server.Mobiles.Shipwright"
}

View file

@ -1,9 +1,11 @@
using System.Collections.Generic;
using ModernUO.Serialization;
using Server.Items;
namespace Server.Mobiles
{
public class Shipwright : BaseVendor
[SerializationGenerator(0, false)]
public partial class Shipwright : BaseVendor
{
private readonly List<SBInfo> m_SBInfos = new();