fix: Optimizes items to use default weights. (Part 1) (#2240)

This commit is contained in:
Kamron Batman 2025-07-24 14:44:39 -07:00 committed by GitHub
parent c2e44a58f6
commit 2eba2868a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
126 changed files with 1184 additions and 380 deletions

View file

@ -6,5 +6,9 @@ namespace Server.Items;
public partial class Tambourine : BaseInstrument
{
[Constructible]
public Tambourine() : base(0xE9D, 0x52, 0x53) => Weight = 1.0;
public Tambourine() : base(0xE9D, 0x52, 0x53)
{
}
public override double DefaultWeight => 1.0;
}

View file

@ -6,5 +6,9 @@ namespace Server.Items;
public partial class TambourineTassel : BaseInstrument
{
[Constructible]
public TambourineTassel() : base(0xE9E, 0x52, 0x53) => Weight = 1.0;
public TambourineTassel() : base(0xE9E, 0x52, 0x53)
{
}
public override double DefaultWeight => 1.0;
}