From 44b5c665738ce2ff11df28ecb7cb70ed1d6ea9d8 Mon Sep 17 00:00:00 2001 From: WarrentyExpired Date: Tue, 21 Jul 2026 08:11:24 -0400 Subject: [PATCH] #W# Tweaked instrument delay. --- Scripts/Items/Skill Items/Instruments/BaseInstrument.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/Items/Skill Items/Instruments/BaseInstrument.cs b/Scripts/Items/Skill Items/Instruments/BaseInstrument.cs index b854e6e..1d0dd8d 100644 --- a/Scripts/Items/Skill Items/Instruments/BaseInstrument.cs +++ b/Scripts/Items/Skill Items/Instruments/BaseInstrument.cs @@ -546,7 +546,7 @@ namespace Server.Items { private Mobile m_From; - public InternalTimer( Mobile from ) : base( TimeSpan.FromSeconds( 6.0 ) ) + public InternalTimer( Mobile from ) : base( TimeSpan.FromSeconds( 2.0 ) ) { m_From = from; Priority = TimerPriority.TwoFiftyMS; @@ -571,4 +571,4 @@ namespace Server.Items #endregion } -} \ No newline at end of file +}