### Summary - [X] Fixes a bug in wall banner East setter: [[ServerUO#5046]](https://github.com/ServUO/ServUO/pull/5046) - [X] Eliminates the timer in tree stump. - [X] Codegens the rewards
16 lines
412 B
C#
16 lines
412 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class RoseInAVase : Item /* TODO: when dye tub changes are implemented, furny dyable this */
|
|
{
|
|
[Constructible]
|
|
public RoseInAVase() : base(0x0EB0)
|
|
{
|
|
Hue = 0x20;
|
|
LootType = LootType.Blessed;
|
|
}
|
|
|
|
public override int LabelNumber => 1023760; // A Rose in a Vase 1023760
|
|
}
|