### Summary - Adds some more checks in case a corpse's owner is somehow null. Would like to eventually allow null owner corpses, but more work is needed. - Cleans up variable unboxing and reassignment in quests. Also flattens quest logic. Still more work needs to be done. - Codegens more quest items/mobiles.
12 lines
312 B
C#
12 lines
312 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Engines.Quests.Hag;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class MoonfireBrew : Item
|
|
{
|
|
[Constructible]
|
|
public MoonfireBrew() : base(0xF04) => Weight = 1.0;
|
|
|
|
public override int LabelNumber => 1055065; // a bottle of magical moonfire brew
|
|
}
|