/// <param name="simulator">The simulator originating the event message</param>
private void TeleportFinishEventHandler(String capsKey, IMessage message, Simulator simulator) throws UnknownHostException, Exception
{
TeleportFinishMessage msg = (TeleportFinishMessage)message;
TeleportFinishPacket p = new TeleportFinishPacket();
p.Info.AgentID = msg.AgentID;
p.Info.LocationID = msg.LocationID;
p.Info.RegionHandle = msg.RegionHandle;
p.Info.SeedCapability = Utils.stringToBytesWithTrailingNullByte(msg.SeedCapability.toString()); // FIXME: Check This
p.Info.SimAccess = (byte)msg.SimAccess.getIndex();