fix: Optimizes items to use default weights. (Part 1) (#2240)
This commit is contained in:
parent
c2e44a58f6
commit
2eba2868a6
126 changed files with 1184 additions and 380 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue