From 1d2d51b1de0026c29c01b5877ca32b7970a63271 Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Fri, 14 Feb 2014 21:41:24 -0700 Subject: [PATCH] change communication crystals to always return true for HandlesOnSpeech we will be making some changes to the way child items that handle speech events are processed --- Scripts/Items/Misc/CommunicationCrystals.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Items/Misc/CommunicationCrystals.cs b/Scripts/Items/Misc/CommunicationCrystals.cs index 053aa3dc8..8414db0a2 100644 --- a/Scripts/Items/Misc/CommunicationCrystals.cs +++ b/Scripts/Items/Misc/CommunicationCrystals.cs @@ -126,7 +126,7 @@ namespace Server.Items public override bool HandlesOnSpeech { - get{ return Active && Receivers.Count > 0 && ( RootParent == null || RootParent is Mobile ); } + get{ return true; } } public override void OnSpeech( SpeechEventArgs e )