/// <param name="capsKey">The message key</param>
/// <param name="message">the IMessage object containing the deserialized data sent from the simulator</param>
/// <param name="simulator">The <see cref="Simulator"/> which originated the packet</param>
private void CrossedRegionEventHandler(String capsKey, IMessage message, Simulator simulator) throws Exception
{
CrossedRegionMessage crossed = (CrossedRegionMessage)message;
InetSocketAddress endPoint = new InetSocketAddress(crossed.IP, crossed.Port);
JLogger.debug("Crossed in to new region area, attempting to connect to " + endPoint.toString());