Converts equipment packets (#314)
### Change to how DisplayEquipInfo works * Fixes a bug where raw name wasn't used * Fixes another bug where an empty, blank, or null string was still sending an empty crafted by property. Bumps release version
This commit is contained in:
parent
b0d8dd42c0
commit
1fb7ac5cda
14 changed files with 177 additions and 132 deletions
|
|
@ -469,14 +469,7 @@ namespace Server.Items
|
|||
return;
|
||||
}
|
||||
|
||||
var eqInfo = new EquipmentInfo(
|
||||
number,
|
||||
m_Crafter,
|
||||
false,
|
||||
attrs.ToArray()
|
||||
);
|
||||
|
||||
from.Send(new DisplayEquipmentInfo(this, eqInfo));
|
||||
from.NetState?.SendDisplayEquipmentInfo(Serial, number, m_Crafter?.RawName, false, attrs);
|
||||
}
|
||||
|
||||
public override void Serialize(IGenericWriter writer)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue