From 52caf4ab009c62972c384ecb34ebe184520189e2 Mon Sep 17 00:00:00 2001 From: xavier Date: Sat, 6 Aug 2011 02:26:24 +0000 Subject: [PATCH] bleh, what a day. --- .../Special/8th Anniversary Items/FountainOfLife.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 )]