fix: Consolidates commodity interface for reagents. (#1709)

This commit is contained in:
Kamron Batman 2024-03-21 11:31:14 -07:00 committed by GitHub
parent 3332fabc39
commit f3d1fb82d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 39 additions and 80 deletions

View file

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