fix: Fixes crafter deserialize, cleans up bandages, and codegens misc items (#1350)

This commit is contained in:
Kamron Batman 2023-02-25 00:54:12 -08:00 committed by GitHub
parent 22376cfc20
commit 42012538bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
177 changed files with 994 additions and 1262 deletions

View file

@ -124,8 +124,7 @@ public partial class DragonBardingDeed : Item, ICraftable
private void Deserialize(IGenericReader reader, int version)
{
_exceptional = reader.ReadBool();
var crafter = reader.ReadEntity<Mobile>();
Timer.StartTimer(() => _craftedBy = crafter?.RawName);
Timer.DelayCall((item, crafter) => item._craftedBy = crafter?.RawName, this, reader.ReadEntity<Mobile>());
if (version < 1)
{