#W# Necro books are now equip able.

This commit is contained in:
WarrentyExpired 2026-08-28 08:30:06 -04:00
parent c07b1bfc55
commit a8b96a401b

View file

@ -18,7 +18,8 @@ namespace Server.Items
[Constructable]
public NecromancerSpellbook( ulong content ) : base( content, 0x2253 )
{
Layer = (Core.ML ? Layer.OneHanded : Layer.Invalid);
//Layer = (Core.ML ? Layer.OneHanded : Layer.Invalid);
Layer = Layer.OneHanded;
}
public NecromancerSpellbook( Serial serial ) : base( serial )
@ -38,8 +39,8 @@ namespace Server.Items
int version = reader.ReadInt();
if( version == 0 && Core.ML )
Layer = Layer.OneHanded;
//if( version == 0 && Core.ML )
Layer = Layer.OneHanded;
}
}
}
}