if (way == null)
{
activeChar.onJumpingBreak();
return;
}
JumpPoint point = way.getJumpPoint(_nextWayId);
if (point == null)
{
activeChar.onJumpingBreak();
return;
}
Location destLoc = point.getLocation();
activeChar.broadcastPacketToOthers(new ExFlyMoveBroadcast(activeChar, 2, destLoc));
activeChar.setLoc(destLoc);
JumpTrack track = activeChar.getCurrentJumpTrack();
if (track == null)
{