diff --git a/src/BuildTiles/Match/match.cxx b/src/BuildTiles/Match/match.cxx
index d513f793..3b7693bb 100644
--- a/src/BuildTiles/Match/match.cxx
+++ b/src/BuildTiles/Match/match.cxx
@@ -307,15 +307,15 @@ void FGMatch::split_tile( FGConstruct& c ) {
     }
     if ( ! se_flag ) {
 	se_node = Point3D( max.x, min.y, 0.0 );
-	se_normal = fake_normal( sw_node );
+	se_normal = fake_normal( se_node );
     }
     if ( ! nw_flag ) {
 	nw_node = Point3D( min.x, max.y, 0.0 );
- 	nw_normal = fake_normal( sw_node );
+ 	nw_normal = fake_normal( nw_node );
     }
     if ( ! ne_flag ) {
 	ne_node = Point3D( max.x, max.y, 0.0 );
- 	ne_normal = fake_normal( sw_node );
+ 	ne_normal = fake_normal( ne_node );
    }
 
     // separate nodes and normals into components
diff --git a/src/BuildTiles/Parallel/fgfs-launch-clients b/src/BuildTiles/Parallel/fgfs-launch-clients
index 5a943db8..19c72c3d 100755
--- a/src/BuildTiles/Parallel/fgfs-launch-clients
+++ b/src/BuildTiles/Parallel/fgfs-launch-clients
@@ -101,6 +101,7 @@ for i in $CLIENTS_RUDE; do
     # ssh -n $i "$KILL_COMMAND"
 
     RMT_COMMAND="source ~/.profile; nice $CLIENT --host=$SERVER_HOST --port=$SERVER_PORT --work-dir=$WORK_BASE --output-dir=$OUTPUT_DIR --rude AirportArea AirportObj GSHHS-Ponds GSHHS-Islands GSHHS-Lakes GSHHS-LandMass USA-Hydro USA-Urban DEM-3 DEM-30"
+    # RMT_COMMAND="source ~/.profile; nice $CLIENT --host=$SERVER_HOST --port=$SERVER_PORT --work-dir=$WORK_BASE --output-dir=$OUTPUT_DIR --rude AirportArea AirportObj GSHHS-Ponds GSHHS-Islands GSHHS-Lakes GSHHS-LandMass LC-USA USA-Hydro USA-Urban DEM-3 DEM-30"
     echo "client command:"
     echo ""
     echo "$RMT_COMMAND"