diff --git a/Scripts/Items/Special/8th Anniversary Items/FountainOfLife.cs b/Scripts/Items/Special/8th Anniversary Items/FountainOfLife.cs index e45be4ad4..1854fa53f 100644 --- a/Scripts/Items/Special/8th Anniversary Items/FountainOfLife.cs +++ b/Scripts/Items/Special/8th Anniversary Items/FountainOfLife.cs @@ -62,6 +62,11 @@ namespace Server.Items get { return new FountainOfLifeDeed( m_Charges ); } } + public override bool OnDragLift( Mobile from ) + { + return false; + } + public virtual TimeSpan RechargeTime { get { return TimeSpan.FromDays( 1 ); } } public override int LabelNumber { get { return 1075197; } } // Fountain of Life @@ -69,10 +74,6 @@ namespace Server.Items public override int DefaultDropSound { get { return 66; } } public override int DefaultMaxItems { get { return 125; } } - new public bool Movable { get { return m_Movable; } set { } } - - private bool m_Movable; - private int m_Charges; [CommandProperty( AccessLevel.GameMaster )]