From e083b219f025517d87e997491ae7683b91533e40 Mon Sep 17 00:00:00 2001 From: eos Date: Sun, 24 Feb 2013 01:42:45 +0000 Subject: [PATCH] Moved ActionDelay change out of the core, reverted to old value for !Core.AOS. --- Scripts/Misc/CurrentExpansion.cs | 2 ++ Server/Mobile.cs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Scripts/Misc/CurrentExpansion.cs b/Scripts/Misc/CurrentExpansion.cs index e70be1de7..a208e8602 100644 --- a/Scripts/Misc/CurrentExpansion.cs +++ b/Scripts/Misc/CurrentExpansion.cs @@ -25,6 +25,8 @@ namespace Server if ( ObjectPropertyList.Enabled ) PacketHandlers.SingleClickProps = true; // single click for everything is overriden to check object property list + + Mobile.ActionDelay = TimeSpan.FromSeconds( 1.0 ); } } } diff --git a/Server/Mobile.cs b/Server/Mobile.cs index af81a7788..525361063 100644 --- a/Server/Mobile.cs +++ b/Server/Mobile.cs @@ -4266,7 +4266,7 @@ namespace Server m.OnDoubleClick( this ); } - private static TimeSpan m_ActionDelay = TimeSpan.FromSeconds( 1.0 ); + private static TimeSpan m_ActionDelay = TimeSpan.FromSeconds( 0.5 ); public static TimeSpan ActionDelay {