fix: Codegens resources (#1272)

This commit is contained in:
Kamron Batman 2022-11-23 13:45:32 -08:00 committed by GitHub
parent 59ed0a5bb4
commit 82637a77cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 2435 additions and 2695 deletions

View file

@ -1,16 +1,15 @@
using ModernUO.Serialization;
namespace Server.Items
{
[SerializationGenerator(0, false)]
public partial class NoxCrystal : BaseReagent, ICommodity
{
[Constructible]
public NoxCrystal(int amount = 1) : base(0xF8E, amount)
{
}
namespace Server.Items;
int ICommodity.DescriptionNumber => LabelNumber;
bool ICommodity.IsDeedable => true;
[SerializationGenerator(0, false)]
public partial class NoxCrystal : BaseReagent, ICommodity
{
[Constructible]
public NoxCrystal(int amount = 1) : base(0xF8E, amount)
{
}
}
int ICommodity.DescriptionNumber => LabelNumber;
bool ICommodity.IsDeedable => true;
}