private void ProcessMessageForKingdom(string msg, Kingdom r)
        {
            var found = r.GetEmblem().ToCharArray().Select(c => char.ToUpper(c)).Distinct().All(c => msg.ToUpper().Contains(c));

            if (found)
            {
                //Transmit confirmation to the Receiver that its emblem was found in the Message, and then let it decide if it wants to be an Ally  of the sender or not...
                r.ProcessAllegiance(found, Sender);
            }
        }