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
This commit is contained in:
Mark Sturgill 2014-02-14 21:41:24 -07:00
parent ac17483ab4
commit 1d2d51b1de

View file

@ -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 )