Page MenuHomeWildfire Games

Group teams together on maps where players are placed on two separate arcs
ClosedPublic

Authored by temple on Mar 18 2018, 4:40 AM.

Details

Summary

On some maps a player on the first team in a 4v3 matchup might be placed on the half of the map with the three players on the second team, which doesn't seem fair. Plus on some maps the formulas for getting the angles are messy and (seemingly) can't be adjusted easily.

Here we add a function to split a sorted list of players (from sortAllPlayers) into two sides with teammates on the same side. Note that in a 5v3 for example this will put five players on one side and three on the other. (We can use a simple greedy algorithm to calculate the sides, since I think the first example where that fails is 12 players on 5 teams: 3+2+2 vs 3+2, where ideal is 3+3 vs 2+2+2.)

We also add a function to place players on the maps that use two arcs. This is done for m players by dividing the arc from startAngle to endAngle into m+1 pieces and using the m inner points as player positions (ignoring the two endpoints). This seems to work fairly well.

Test Plan

Verify that partitionPlayers works correctly.
Play around with the three maps in Atlas.
I don't know how Jebel Barkal is supposed to look, how close players should be in the center. So those numbers can be tweaked.

Diff Detail

Repository
rP 0 A.D. Public Repository
Lint
Automatic diff as part of commit; lint not applicable.
Unit
Automatic diff as part of commit; unit tests not applicable.

Event Timeline

temple created this revision.Mar 18 2018, 4:40 AM
Vulcan added a subscriber: Vulcan.Mar 18 2018, 4:48 AM

Successful build - Chance fights ever on the side of the prudent.

Linter detected issues:
Executing section Default...
Executing section Source...
Executing section JS...
|    | [NORMAL] ESLintBear (semi):
|    | Missing semicolon.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|  62|  62| g_Map.log("Create the continent body");
|  63|  63| var startAngle = randomAngle();
|  64|  64| var continentCenter = new Vector2D(fractionToTiles(0.5), fractionToTiles(0.7));
|  65|    |-var continentCenterR = continentCenter.clone().rotateAround(startAngle, mapCenter).round()
|    |  65|+var continentCenterR = continentCenter.clone().rotateAround(startAngle, mapCenter).round();
|  66|  66| createArea(
|  67|  67| 	new ChainPlacer(
|  68|  68| 		2,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 153| 153| 
| 154| 154| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 155| 155| createForests(
| 156|    |- [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
|    | 156|+	[tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 157| 157|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 158| 158|  clForest,
| 159| 159|  forestTrees);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 154| 154| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 155| 155| createForests(
| 156| 156|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 157|    |- [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
|    | 157|+	[avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 158| 158|  clForest,
| 159| 159|  forestTrees);
| 160| 160| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 155| 155| createForests(
| 156| 156|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 157| 157|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 158|    |- clForest,
|    | 158|+	clForest,
| 159| 159|  forestTrees);
| 160| 160| 
| 161| 161| Engine.SetProgress(50);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 156| 156|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 157| 157|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 158| 158|  clForest,
| 159|    |- forestTrees);
|    | 159|+	forestTrees);
| 160| 160| 
| 161| 161| Engine.SetProgress(50);
| 162| 162| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| 
| 163| 163| g_Map.log("Creating dirt patches");
| 164| 164| createLayeredPatches(
| 165|    |- [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
|    | 165|+	[scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166| 166|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| g_Map.log("Creating dirt patches");
| 164| 164| createLayeredPatches(
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 166|+	[[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| g_Map.log("Creating dirt patches");
| 164| 164| createLayeredPatches(
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 166|+ [[tGrass, tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| g_Map.log("Creating dirt patches");
| 164| 164| createLayeredPatches(
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 166|+ [[tGrass,tGrassA], [tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| g_Map.log("Creating dirt patches");
| 164| 164| createLayeredPatches(
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 166|+ [[tGrass,tGrassA],[tGrassA, tGrassB], [tGrassB,tGrassC]],
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| g_Map.log("Creating dirt patches");
| 164| 164| createLayeredPatches(
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 166|+ [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB, tGrassC]],
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 164| 164| createLayeredPatches(
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166| 166|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167|    |- [1,1],
|    | 167|+	[1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
| 170| 170|  clDirt);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 164| 164| createLayeredPatches(
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166| 166|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167|    |- [1,1],
|    | 167|+ [1, 1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
| 170| 170|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 165| 165|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 166| 166|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167| 167|  [1,1],
| 168|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 168|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
| 170| 170|  clDirt);
| 171| 171| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 166| 166|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169|    |- scaleByMapSize(15, 45),
|    | 169|+	scaleByMapSize(15, 45),
| 170| 170|  clDirt);
| 171| 171| 
| 172| 172| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 167| 167|  [1,1],
| 168| 168|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 169| 169|  scaleByMapSize(15, 45),
| 170|    |- clDirt);
|    | 170|+	clDirt);
| 171| 171| 
| 172| 172| g_Map.log("Creating grass patches");
| 173| 173| createPatches(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 171| 171| 
| 172| 172| g_Map.log("Creating grass patches");
| 173| 173| createPatches(
| 174|    |- [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
|    | 174|+	[scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 175| 175|  tGrassPatch,
| 176| 176|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 177| 177|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 172| 172| g_Map.log("Creating grass patches");
| 173| 173| createPatches(
| 174| 174|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 175|    |- tGrassPatch,
|    | 175|+	tGrassPatch,
| 176| 176|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 177| 177|  scaleByMapSize(15, 45),
| 178| 178|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 173| 173| createPatches(
| 174| 174|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 175| 175|  tGrassPatch,
| 176|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 176|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 177| 177|  scaleByMapSize(15, 45),
| 178| 178|  clDirt);
| 179| 179| Engine.SetProgress(55);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 174| 174|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 175| 175|  tGrassPatch,
| 176| 176|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 177|    |- scaleByMapSize(15, 45),
|    | 177|+	scaleByMapSize(15, 45),
| 178| 178|  clDirt);
| 179| 179| Engine.SetProgress(55);
| 180| 180| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 175| 175|  tGrassPatch,
| 176| 176|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 177| 177|  scaleByMapSize(15, 45),
| 178|    |- clDirt);
|    | 178|+	clDirt);
| 179| 179| Engine.SetProgress(55);
| 180| 180| 
| 181| 181| g_Map.log("Creating stone mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 180| 180| 
| 181| 181| g_Map.log("Creating stone mines");
| 182| 182| createMines(
| 183|    |- [
|    | 183|+	[
| 184| 184|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 185| 185|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 186| 186|  ],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181| g_Map.log("Creating stone mines");
| 182| 182| createMines(
| 183| 183|  [
| 184|    |-  [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
|    | 184|+		[new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 185| 185|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 186| 186|  ],
| 187| 187|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 182| 182| createMines(
| 183| 183|  [
| 184| 184|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 185|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 185|+		[new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 186| 186|  ],
| 187| 187|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 188| 188|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 182| 182| createMines(
| 183| 183|  [
| 184| 184|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 185|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 185|+  [new SimpleObject(oStoneSmall, 2, 5, 1,3)]
| 186| 186|  ],
| 187| 187|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 188| 188|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 182| 182| createMines(
| 183| 183|  [
| 184| 184|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 185|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 185|+  [new SimpleObject(oStoneSmall, 2,5, 1, 3)]
| 186| 186|  ],
| 187| 187|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 188| 188|  clRock);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 183| 183|  [
| 184| 184|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 185| 185|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 186|    |- ],
|    | 186|+	],
| 187| 187|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 188| 188|  clRock);
| 189| 189| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 184| 184|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 185| 185|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 186| 186|  ],
| 187|    |- [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | 187|+	[avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 188| 188|  clRock);
| 189| 189| 
| 190| 190| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 185| 185|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 186| 186|  ],
| 187| 187|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 188|    |- clRock);
|    | 188|+	clRock);
| 189| 189| 
| 190| 190| g_Map.log("Creating metal mines");
| 191| 191| createMines(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| 
| 190| 190| g_Map.log("Creating metal mines");
| 191| 191| createMines(
| 192|    |- [
|    | 192|+	[
| 193| 193|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 194| 194|  ],
| 195| 195|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 190| 190| g_Map.log("Creating metal mines");
| 191| 191| createMines(
| 192| 192|  [
| 193|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 193|+		[new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 194| 194|  ],
| 195| 195|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 196| 196|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 190| 190| g_Map.log("Creating metal mines");
| 191| 191| createMines(
| 192| 192|  [
| 193|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 193|+  [new SimpleObject(oMetalLarge, 1, 1, 0,4)]
| 194| 194|  ],
| 195| 195|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 196| 196|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 190| 190| g_Map.log("Creating metal mines");
| 191| 191| createMines(
| 192| 192|  [
| 193|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 193|+  [new SimpleObject(oMetalLarge, 1,1, 0, 4)]
| 194| 194|  ],
| 195| 195|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 196| 196|  clMetal
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 191| 191| createMines(
| 192| 192|  [
| 193| 193|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 194|    |- ],
|    | 194|+	],
| 195| 195|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 196| 196|  clMetal
| 197| 197| );
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 192| 192|  [
| 193| 193|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 194| 194|  ],
| 195|    |- [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | 195|+	[avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 196| 196|  clMetal
| 197| 197| );
| 198| 198| Engine.SetProgress(65);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 193| 193|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 194| 194|  ],
| 195| 195|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 196|    |- clMetal
|    | 196|+	clMetal
| 197| 197| );
| 198| 198| Engine.SetProgress(65);
| 199| 199| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 275| 275| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 276| 276| 
| 277| 277| setSkySet("cumulus");
| 278|    |-setWaterColor(0.2,0.312,0.522);
|    | 278|+setWaterColor(0.2, 0.312,0.522);
| 279| 279| setWaterTint(0.1,0.1,0.8);
| 280| 280| setWaterWaviness(4.0);
| 281| 281| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 275| 275| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 276| 276| 
| 277| 277| setSkySet("cumulus");
| 278|    |-setWaterColor(0.2,0.312,0.522);
|    | 278|+setWaterColor(0.2,0.312, 0.522);
| 279| 279| setWaterTint(0.1,0.1,0.8);
| 280| 280| setWaterWaviness(4.0);
| 281| 281| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 276| 276| 
| 277| 277| setSkySet("cumulus");
| 278| 278| setWaterColor(0.2,0.312,0.522);
| 279|    |-setWaterTint(0.1,0.1,0.8);
|    | 279|+setWaterTint(0.1, 0.1,0.8);
| 280| 280| setWaterWaviness(4.0);
| 281| 281| setWaterType("lake");
| 282| 282| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 276| 276| 
| 277| 277| setSkySet("cumulus");
| 278| 278| setWaterColor(0.2,0.312,0.522);
| 279|    |-setWaterTint(0.1,0.1,0.8);
|    | 279|+setWaterTint(0.1,0.1, 0.8);
| 280| 280| setWaterWaviness(4.0);
| 281| 281| setWaterType("lake");
| 282| 282| setWaterMurkiness(0.73);

binaries/data/mods/public/maps/random/guadalquivir_river.js
|  85| ·»   fractionToTiles(0.35),
|    | [NORMAL] ESLintBear (no-mixed-spaces-and-tabs):
|    | Mixed spaces and tabs.

binaries/data/mods/public/maps/random/guadalquivir_river.js
|  65| var·continentCenterR·=·continentCenter.clone().rotateAround(startAngle,·mapCenter).round()
|    | [NORMAL] JSHintBear:
|    | Missing semicolon.
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   2|   2| Engine.LoadLibrary("rmgen-common");
|   3|   3| TILE_CENTERED_HEIGHT_MAP = true;
|   4|   4| 
|   5|    |-const tGrassSpecific = ["new_alpine_grass_d","new_alpine_grass_d", "new_alpine_grass_e"];
|    |   5|+const tGrassSpecific = ["new_alpine_grass_d", "new_alpine_grass_d", "new_alpine_grass_e"];
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|    |-const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|    |   9|+const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c", "alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|   9| const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|    |-const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|    |  11|+const tTopSnow = ["alpine_snow_rocky", "alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d", "alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d", "alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|    |-const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    |  14|+const tLushGrass = ["new_alpine_grass_a", "new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|    |-const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|    |  15|+const tMidRangeCliffs = ["alpine_cliff_b", "alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|    |-const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    |  16|+const tHighRangeCliffs = ["alpine_mountainside", "alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a", "sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b", "sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b", "sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|    |-const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    |  22|+const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b", "alpine_grass_d"];
|  23|  23| const tRoad = "new_alpine_citytile";
|  24|  24| const tRoadWild = "new_alpine_citytile";
|  25|  25| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  40|  40| const aBushMedium = "actor|props/flora/bush_medit_me.xml";
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|    |-const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  43|+const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  44|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|    |-const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  46|+const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  47|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest, tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2, tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2,tForestTransition, tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 5.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|    |-const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  51|+const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+	tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition, tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2, tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition, tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition, tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 230| 230| 			let rest = 2 * (1 - distance / mountainWidth);
| 231| 231| 
| 232| 232| 			let sigmoidX =
| 233|    |-				- 1 * (rest - 1.9) +
|    | 233|+				-1 * (rest - 1.9) +
| 234| 234| 				- 4 *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
| 236| 236| 					(rest - randFloat(0.9, 1.1)) *
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 231| 231| 
| 232| 232| 			let sigmoidX =
| 233| 233| 				- 1 * (rest - 1.9) +
| 234|    |-				- 4 *
|    | 234|+				-4 *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
| 236| 236| 					(rest - randFloat(0.9, 1.1)) *
| 237| 237| 					(rest - randFloat(0.9, 1.1));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 307| 307| g_Map.log("Creating forests");
| 308| 308| var types = [[tForestTransition, pForestLandVeryLight, pForestLandLight, pForestLand]];
| 309| 309| var size = scaleByMapSize(40, 115) * Math.PI;
| 310|    |-var num = Math.floor(scaleByMapSize(8,40) / types.length);
|    | 310|+var num = Math.floor(scaleByMapSize(8, 40) / types.length);
| 311| 311| for (let type of types)
| 312| 312| 	createAreas(
| 313| 313| 		new ClumpPlacer(size, 0.2, 0.1, Infinity),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 315| 315| 			new LayeredPainter(type, [scaleByMapSize(1, 2), scaleByMapSize(3, 6), scaleByMapSize(3, 6)]),
| 316| 316| 			new TileClassPainter(clForest)
| 317| 317| 		],
| 318|    |-		avoidClasses(clPlayer, 20, clPyrenneans,0, clForest, 7, clWater, 2),
|    | 318|+		avoidClasses(clPlayer, 20, clPyrenneans, 0, clForest, 7, clWater, 2),
| 319| 319| 		num);
| 320| 320| Engine.SetProgress(60);
| 321| 321| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 320| 320| Engine.SetProgress(60);
| 321| 321| 
| 322| 322| g_Map.log("Creating lone trees");
| 323|    |-var num = scaleByMapSize(80,400);
|    | 323|+var num = scaleByMapSize(80, 400);
| 324| 324| 
| 325| 325| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 326| 326| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| g_Map.log("Creating lone trees");
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 325|+var group = new SimpleGroup([new SimpleObject(oPine, 1, 2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 326| 326| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| g_Map.log("Creating lone trees");
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 325|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1, 3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 326| 326| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| g_Map.log("Creating lone trees");
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 325|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3), new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 326| 326| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| g_Map.log("Creating lone trees");
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 325|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1, 2, 1,3)], true, clForest);
| 326| 326| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| g_Map.log("Creating lone trees");
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 325|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1, 3)], true, clForest);
| 326| 326| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325| 325| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 326|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 326|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
| 329| 329| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325| 325| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 326|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 326|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8, clPyrenneans, 1), num, 20 );
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
| 329| 329| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 323| 323| var num = scaleByMapSize(80,400);
| 324| 324| 
| 325| 325| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 326|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 326|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20);
| 327| 327| 
| 328| 328| g_Map.log("Painting terrain by height and slope");
| 329| 329| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 374| 374| 			new TerrainPainter(tDirtyGrass),
| 375| 375| 			new TileClassPainter(clDirt)
| 376| 376| 		],
| 377|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 377|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 378| 378| 		scaleByMapSize(15, 45));
| 379| 379| 
| 380| 380| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 382| 382| 	createAreas(
| 383| 383| 		new ClumpPlacer(size, 0.3, 0.06, 0.5),
| 384| 384| 		new TerrainPainter(tLushGrass),
| 385|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 385|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 386| 386| 		scaleByMapSize(15, 45));
| 387| 387| 
| 388| 388| Engine.SetProgress(70);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| 
| 390| 390| // making more in dirt areas so as to appear different
| 391| 391| g_Map.log("Creating small grass tufts");
| 392|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 392|+var group = new SimpleGroup([new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 393| 393| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| 
| 390| 390| // making more in dirt areas so as to appear different
| 391| 391| g_Map.log("Creating small grass tufts");
| 392|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 392|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1, 2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 393| 393| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| 
| 390| 390| // making more in dirt areas so as to appear different
| 391| 391| g_Map.log("Creating small grass tufts");
| 392|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 392|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0, 1, -Math.PI / 8, Math.PI / 8)] );
| 393| 393| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| 
| 390| 390| // making more in dirt areas so as to appear different
| 391| 391| g_Map.log("Creating small grass tufts");
| 392|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 392|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)]);
| 393| 393| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| // making more in dirt areas so as to appear different
| 391| 391| g_Map.log("Creating small grass tufts");
| 392| 392| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 393|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 393|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| // making more in dirt areas so as to appear different
| 391| 391| g_Map.log("Creating small grass tufts");
| 392| 392| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 393|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 393|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 391| 391| g_Map.log("Creating small grass tufts");
| 392| 392| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 393| 393| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 394|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 394|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397| 397| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 391| 391| g_Map.log("Creating small grass tufts");
| 392| 392| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 393| 393| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 394|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 394|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397| 397| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 397|+group = new SimpleGroup([new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 397|+group = new SimpleGroup( [new SimpleObject(aGrass, 2, 4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 397|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0, 1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 397|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3, 6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 397|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2, 2.5, -Math.PI / 8, Math.PI / 8)] );
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 397|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)]);
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397| 397| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 398|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| 
| 396| 396| g_Map.log("Creating large grass tufts");
| 397| 397| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 398|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 399| 399| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 396| 396| g_Map.log("Creating large grass tufts");
| 397| 397| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 399|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 396| 396| g_Map.log("Creating large grass tufts");
| 397| 397| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 398| 398| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 399|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 399|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
| 403|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 403|+group = new SimpleGroup([new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 404| 404| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 405| 405| 
| 406| 406| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
| 403|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 403|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1, 2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 404| 404| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 405| 405| 
| 406| 406| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
| 403|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 403|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0, 2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 404| 404| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 405| 405| 
| 406| 406| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
| 403|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 403|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2, 4, 0,2)] );
| 404| 404| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 405| 405| 
| 406| 406| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
| 403|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 403|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0, 2)] );
| 404| 404| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 405| 405| 
| 406| 406| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| Engine.SetProgress(75);
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
| 403|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 403|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)]);
| 404| 404| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 405| 405| 
| 406| 406| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 401| 401| 
| 402| 402| g_Map.log("Creating bushes");
| 403| 403| group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 404|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
|    | 404|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50);
| 405| 405| 
| 406| 406| Engine.SetProgress(80);
| 407| 407| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 407| 407| 
| 408| 408| g_Map.log("Creating stone mines");
| 409| 409| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 410|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 410|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 407| 407| 
| 408| 408| g_Map.log("Creating stone mines");
| 409| 409| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 410|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 410|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 407| 407| 
| 408| 408| g_Map.log("Creating stone mines");
| 409| 409| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 410|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 410|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 407| 407| 
| 408| 408| g_Map.log("Creating stone mines");
| 409| 409| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 410|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 410|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 413|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2, 5, 1,3)], true, clRock);
| 414| 414| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 413|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1, 3)], true, clRock);
| 414| 414| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 414|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 414|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417| 417| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 414|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 414|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417| 417| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 414|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 414|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417| 417| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 411| 411| 
| 412| 412| g_Map.log("Creating small stone quarries");
| 413| 413| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 414|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 414|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417| 417| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 417|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1, 1, 0,4)], true, clMetal);
| 418| 418| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 419| 419| 
| 420| 420| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 417|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0, 4)], true, clMetal);
| 418| 418| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 419| 419| 
| 420| 420| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417| 417| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 418|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 418|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4, 16), 100  );
| 419| 419| 
| 420| 420| Engine.SetProgress(85);
| 421| 421| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417| 417| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 418|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 418|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100);
| 419| 419| 
| 420| 420| Engine.SetProgress(85);
| 421| 421| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before ')'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 415| 415| 
| 416| 416| g_Map.log("Creating metal mines");
| 417| 417| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 418|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 418|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 419| 419| 
| 420| 420| Engine.SetProgress(85);
| 421| 421| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| Engine.SetProgress(85);
| 421| 421| 
| 422| 422| g_Map.log("Creating small decorative rocks");
| 423|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 423|+group = new SimpleGroup([new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| Engine.SetProgress(85);
| 421| 421| 
| 422| 422| g_Map.log("Creating small decorative rocks");
| 423|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 423|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1, 3, 0,1)], true );
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| Engine.SetProgress(85);
| 421| 421| 
| 422| 422| g_Map.log("Creating small decorative rocks");
| 423|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 423|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0, 1)], true );
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| Engine.SetProgress(85);
| 421| 421| 
| 422| 422| g_Map.log("Creating small decorative rocks");
| 423|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 423|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true);
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 421| 421| 
| 422| 422| g_Map.log("Creating small decorative rocks");
| 423| 423| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 424|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 424|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427| 427| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 421| 421| 
| 422| 422| g_Map.log("Creating small decorative rocks");
| 423| 423| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 424|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 424|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50);
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427| 427| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 427|+group = new SimpleGroup([new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 428| 428| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 427|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1, 2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 428| 428| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 427|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0, 1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 428| 428| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 427|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1, 3, 0,2)], true );
| 428| 428| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 427|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0, 2)], true );
| 428| 428| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 427|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true);
| 428| 428| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427| 427| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 428|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 428|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
| 431| 431| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427| 427| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 428|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 428|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
| 431| 431| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 425| 425| 
| 426| 426| g_Map.log("Creating large decorative rocks");
| 427| 427| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 428|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 428|+createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50);
| 429| 429| 
| 430| 430| Engine.SetProgress(90);
| 431| 431| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| Engine.SetProgress(90);
| 431| 431| 
| 432| 432| g_Map.log("Creating deer");
| 433|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 433|+group = new SimpleGroup([new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| Engine.SetProgress(90);
| 431| 431| 
| 432| 432| g_Map.log("Creating deer");
| 433|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 433|+group = new SimpleGroup( [new SimpleObject(oDeer, 5, 7, 0,4)], true, clFood );
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| Engine.SetProgress(90);
| 431| 431| 
| 432| 432| g_Map.log("Creating deer");
| 433|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 433|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0, 4)], true, clFood );
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| Engine.SetProgress(90);
| 431| 431| 
| 432| 432| g_Map.log("Creating deer");
| 433|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 433|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood);
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 431| 431| 
| 432| 432| g_Map.log("Creating deer");
| 433| 433| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 434|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 434|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437| 437| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before '3'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 431| 431| 
| 432| 432| g_Map.log("Creating deer");
| 433| 433| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 434|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 434|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437| 437| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 431| 431| 
| 432| 432| g_Map.log("Creating deer");
| 433| 433| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 434|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 434|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50);
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437| 437| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 437|+group = new SimpleGroup([new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 437|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2, 3, 0,2)], true, clFood );
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 437|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0, 2)], true, clFood );
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 437|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood);
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437| 437| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 438|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 438|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
| 441| 441| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 435| 435| 
| 436| 436| g_Map.log("Creating rabbit");
| 437| 437| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 438|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 438|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50);
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
| 441| 441| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
| 441|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 441|+group = new SimpleGroup([new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
| 441|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 441|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5, 7, 0,4)],true, clFood );
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
| 441|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 441|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0, 4)],true, clFood );
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
| 441|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 441|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)], true, clFood );
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 438| 438| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 439| 439| 
| 440| 440| g_Map.log("Creating berry bush");
| 441|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 441|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood);
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
| 445|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 445|+group = new SimpleGroup([new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 446| 446| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 447| 447| 
| 448| 448| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
| 445|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 445|+group = new SimpleGroup( [new SimpleObject(oFish, 2, 3, 0,2)], true, clFood );
| 446| 446| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 447| 447| 
| 448| 448| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
| 445|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 445|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0, 2)], true, clFood );
| 446| 446| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 447| 447| 
| 448| 448| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
| 445|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 445|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood);
| 446| 446| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 447| 447| 
| 448| 448| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 443| 443| 
| 444| 444| g_Map.log("Creating fish");
| 445| 445| group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 446|    |-createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
|    | 446|+createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60);
| 447| 447| 
| 448| 448| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
| 449| 449| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| setSunRotation(randomAngle());
| 452| 452| 
| 453| 453| setSkySet("cumulus");
| 454|    |-setSunColor(0.73,0.73,0.65);
|    | 454|+setSunColor(0.73, 0.73,0.65);
| 455| 455| setTerrainAmbientColor(0.45,0.45,0.50);
| 456| 456| setUnitsAmbientColor(0.4,0.4,0.4);
| 457| 457| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| setSunRotation(randomAngle());
| 452| 452| 
| 453| 453| setSkySet("cumulus");
| 454|    |-setSunColor(0.73,0.73,0.65);
|    | 454|+setSunColor(0.73,0.73, 0.65);
| 455| 455| setTerrainAmbientColor(0.45,0.45,0.50);
| 456| 456| setUnitsAmbientColor(0.4,0.4,0.4);
| 457| 457| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| 
| 453| 453| setSkySet("cumulus");
| 454| 454| setSunColor(0.73,0.73,0.65);
| 455|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 455|+setTerrainAmbientColor(0.45, 0.45,0.50);
| 456| 456| setUnitsAmbientColor(0.4,0.4,0.4);
| 457| 457| setWaterColor(0.263, 0.353, 0.616);
| 458| 458| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| 
| 453| 453| setSkySet("cumulus");
| 454| 454| setSunColor(0.73,0.73,0.65);
| 455|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 455|+setTerrainAmbientColor(0.45,0.45, 0.50);
| 456| 456| setUnitsAmbientColor(0.4,0.4,0.4);
| 457| 457| setWaterColor(0.263, 0.353, 0.616);
| 458| 458| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 453| 453| setSkySet("cumulus");
| 454| 454| setSunColor(0.73,0.73,0.65);
| 455| 455| setTerrainAmbientColor(0.45,0.45,0.50);
| 456|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 456|+setUnitsAmbientColor(0.4, 0.4,0.4);
| 457| 457| setWaterColor(0.263, 0.353, 0.616);
| 458| 458| setWaterTint(0.104, 0.172, 0.563);
| 459| 459| setWaterWaviness(5.0);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 453| 453| setSkySet("cumulus");
| 454| 454| setSunColor(0.73,0.73,0.65);
| 455| 455| setTerrainAmbientColor(0.45,0.45,0.50);
| 456|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 456|+setUnitsAmbientColor(0.4,0.4, 0.4);
| 457| 457| setWaterColor(0.263, 0.353, 0.616);
| 458| 458| setWaterTint(0.104, 0.172, 0.563);
| 459| 459| setWaterWaviness(5.0);

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 370| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 370| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 381| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 381| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 208| 208| 
| 209| 209| var layoutKushTemples = [
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211|    |-	({
|    | 211|+		({
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 209| 209| var layoutKushTemples = [
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211| 211| 	({
| 212|    |-		"template": oTempleApedemak,
|    | 212|+			"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211| 211| 	({
| 212| 212| 		"template": oTempleApedemak,
| 213|    |-		"pathOffset": new Vector2D(0, 9),
|    | 213|+			"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
| 216| 216| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 211| 211| 	({
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 214|+			"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
| 216| 216| 	{
| 217| 217| 		"template": oTempleAmun,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215|    |-	})),
|    | 215|+		})),
| 216| 216| 	{
| 217| 217| 		"template": oTempleAmun,
| 218| 218| 		"pathOffset": new Vector2D(0, 12),
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 220| 220| 	},
| 221| 221| 	{
| 222| 222| 		"template": oWonderPtol,
| 223|    |-		"pathOffset": new Vector2D(0,  scaleByMapSize(9, 14)),
|    | 223|+		"pathOffset": new Vector2D(0, scaleByMapSize(9, 14)),
| 224| 224| 		"minMapSize": 0
| 225| 225| 	},
| 226| 226| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 229| 229| 		"minMapSize": 256
| 230| 230| 	},
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232|    |-	({
|    | 232|+		({
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 230| 230| 	},
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232| 232| 	({
| 233|    |-		"template": oTempleApedemak,
|    | 233|+			"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232| 232| 	({
| 233| 233| 		"template": oTempleApedemak,
| 234|    |-		"pathOffset": new Vector2D(0, 9),
|    | 234|+			"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 232| 232| 	({
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 235|+			"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
| 238| 238| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236|    |-	}))
|    | 236|+		}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
| 238| 238| 
| 239| 239| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 412| 412| 
| 413| 413| g_Map.log("Marking water");
| 414| 414| createArea(
| 415|    |-		new MapBoundsPlacer(),
|    | 415|+	new MapBoundsPlacer(),
| 416| 416| 		[
| 417| 417| 			new TileClassPainter(clWater),
| 418| 418| 			new TileClassUnPainter(clFertileLand)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 413| 413| g_Map.log("Marking water");
| 414| 414| createArea(
| 415| 415| 		new MapBoundsPlacer(),
| 416|    |-		[
|    | 416|+	[
| 417| 417| 			new TileClassPainter(clWater),
| 418| 418| 			new TileClassUnPainter(clFertileLand)
| 419| 419| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 414| 414| createArea(
| 415| 415| 		new MapBoundsPlacer(),
| 416| 416| 		[
| 417|    |-			new TileClassPainter(clWater),
|    | 417|+		new TileClassPainter(clWater),
| 418| 418| 			new TileClassUnPainter(clFertileLand)
| 419| 419| 		],
| 420| 420| 		new HeightConstraint(-Infinity, heightWaterLevel));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 415| 415| 		new MapBoundsPlacer(),
| 416| 416| 		[
| 417| 417| 			new TileClassPainter(clWater),
| 418|    |-			new TileClassUnPainter(clFertileLand)
|    | 418|+		new TileClassUnPainter(clFertileLand)
| 419| 419| 		],
| 420| 420| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 421| 421| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 416| 416| 		[
| 417| 417| 			new TileClassPainter(clWater),
| 418| 418| 			new TileClassUnPainter(clFertileLand)
| 419|    |-		],
|    | 419|+	],
| 420| 420| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 421| 421| 
| 422| 422| g_Map.log("Marking desert");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 417| 417| 			new TileClassPainter(clWater),
| 418| 418| 			new TileClassUnPainter(clFertileLand)
| 419| 419| 		],
| 420|    |-		new HeightConstraint(-Infinity, heightWaterLevel));
|    | 420|+	new HeightConstraint(-Infinity, heightWaterLevel));
| 421| 421| 
| 422| 422| g_Map.log("Marking desert");
| 423| 423| createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 451| 451| g_Map.log("Creating irrigation canals");
| 452| 452| var irrigationCanalLocations = [];
| 453| 453| for (let area of irrigationCanalAreas)
| 454|    |-	{
|    | 454|+{
| 455| 455| 		if (!area.getPoints().length ||
| 456| 456| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 457| 457| 			continue;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 452| 452| var irrigationCanalLocations = [];
| 453| 453| for (let area of irrigationCanalAreas)
| 454| 454| 	{
| 455|    |-		if (!area.getPoints().length ||
|    | 455|+	if (!area.getPoints().length ||
| 456| 456| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 457| 457| 			continue;
| 458| 458| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 454| 454| 	{
| 455| 455| 		if (!area.getPoints().length ||
| 456| 456| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 457|    |-			continue;
|    | 457|+		continue;
| 458| 458| 
| 459| 459| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 460| 460| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 456| 456| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 457| 457| 			continue;
| 458| 458| 
| 459|    |-		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
|    | 459|+	irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 460| 460| 		createArea(
| 461| 461| 			new MapBoundsPlacer(),
| 462| 462| 			[
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 457| 457| 			continue;
| 458| 458| 
| 459| 459| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 460|    |-		createArea(
|    | 460|+	createArea(
| 461| 461| 			new MapBoundsPlacer(),
| 462| 462| 			[
| 463| 463| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 458| 458| 
| 459| 459| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 460| 460| 		createArea(
| 461|    |-			new MapBoundsPlacer(),
|    | 461|+		new MapBoundsPlacer(),
| 462| 462| 			[
| 463| 463| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 464| 464| 				new TileClassPainter(clIrrigationCanal)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 459| 459| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 460| 460| 		createArea(
| 461| 461| 			new MapBoundsPlacer(),
| 462|    |-			[
|    | 462|+		[
| 463| 463| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 464| 464| 				new TileClassPainter(clIrrigationCanal)
| 465| 465| 			],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 460| 460| 		createArea(
| 461| 461| 			new MapBoundsPlacer(),
| 462| 462| 			[
| 463|    |-				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | 463|+			new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 464| 464| 				new TileClassPainter(clIrrigationCanal)
| 465| 465| 			],
| 466| 466| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 461| 461| 			new MapBoundsPlacer(),
| 462| 462| 			[
| 463| 463| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 464|    |-				new TileClassPainter(clIrrigationCanal)
|    | 464|+			new TileClassPainter(clIrrigationCanal)
| 465| 465| 			],
| 466| 466| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 467| 467| 	}
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 462| 462| 			[
| 463| 463| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 464| 464| 				new TileClassPainter(clIrrigationCanal)
| 465|    |-			],
|    | 465|+		],
| 466| 466| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 467| 467| 	}
| 468| 468| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 463| 463| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 464| 464| 				new TileClassPainter(clIrrigationCanal)
| 465| 465| 			],
| 466|    |-			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | 466|+		[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 467| 467| 	}
| 468| 468| 
| 469| 469| g_Map.log("Creating passages");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 464| 464| 				new TileClassPainter(clIrrigationCanal)
| 465| 465| 			],
| 466| 466| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 467|    |-	}
|    | 467|+}
| 468| 468| 
| 469| 469| g_Map.log("Creating passages");
| 470| 470| irrigationCanalLocations.sort((a, b) => a - b);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 669| 669| 		let width =
| 670| 670| 			Math.abs(x - gridPointXCenter) == 0 ?
| 671| 671| 				pathWidthCenter :
| 672|    |-			Math.abs(x - gridPointXCenter) == 1 ?
|    | 672|+				Math.abs(x - gridPointXCenter) == 1 ?
| 673| 673| 				pathWidthSecondary :
| 674| 674| 				pathWidth;
| 675| 675| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 670| 670| 			Math.abs(x - gridPointXCenter) == 0 ?
| 671| 671| 				pathWidthCenter :
| 672| 672| 			Math.abs(x - gridPointXCenter) == 1 ?
| 673|    |-				pathWidthSecondary :
|    | 673|+					pathWidthSecondary :
| 674| 674| 				pathWidth;
| 675| 675| 
| 676| 676| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 671| 671| 				pathWidthCenter :
| 672| 672| 			Math.abs(x - gridPointXCenter) == 1 ?
| 673| 673| 				pathWidthSecondary :
| 674|    |-				pathWidth;
|    | 674|+					pathWidth;
| 675| 675| 
| 676| 676| 		createArea(
| 677| 677| 			new PathPlacer(cityGridPosition[y - 1][x], cityGridPosition[y][x], width, 0, 8, 0, 0, Infinity),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 800| 800| g_Map.log("Placing city districts");
| 801| 801| for (let y = 1; y < gridPointsY; ++y)
| 802| 802| 	for (let x = 1; x < gridPointsX; ++x)
| 803|    |-	createArea(
|    | 803|+		createArea(
| 804| 804| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 805| 805| 		[
| 806| 806| 			new TerrainPainter(tRoadDesert),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 801| 801| for (let y = 1; y < gridPointsY; ++y)
| 802| 802| 	for (let x = 1; x < gridPointsX; ++x)
| 803| 803| 	createArea(
| 804|    |-		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
|    | 804|+			new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 805| 805| 		[
| 806| 806| 			new TerrainPainter(tRoadDesert),
| 807| 807| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 802| 802| 	for (let x = 1; x < gridPointsX; ++x)
| 803| 803| 	createArea(
| 804| 804| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 805|    |-		[
|    | 805|+			[
| 806| 806| 			new TerrainPainter(tRoadDesert),
| 807| 807| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 808| 808| 			new TileClassPainter(clCity)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 803| 803| 	createArea(
| 804| 804| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 805| 805| 		[
| 806|    |-			new TerrainPainter(tRoadDesert),
|    | 806|+				new TerrainPainter(tRoadDesert),
| 807| 807| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 808| 808| 			new TileClassPainter(clCity)
| 809| 809| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 804| 804| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 805| 805| 		[
| 806| 806| 			new TerrainPainter(tRoadDesert),
| 807|    |-			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | 807|+				new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 808| 808| 			new TileClassPainter(clCity)
| 809| 809| 		],
| 810| 810| 		new StaticConstraint(avoidClasses(clPath, 0)));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 805| 805| 		[
| 806| 806| 			new TerrainPainter(tRoadDesert),
| 807| 807| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 808|    |-			new TileClassPainter(clCity)
|    | 808|+				new TileClassPainter(clCity)
| 809| 809| 		],
| 810| 810| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 811| 811| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 806| 806| 			new TerrainPainter(tRoadDesert),
| 807| 807| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 808| 808| 			new TileClassPainter(clCity)
| 809|    |-		],
|    | 809|+			],
| 810| 810| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 811| 811| 
| 812| 812| if (placeNapataWall)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 807| 807| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 808| 808| 			new TileClassPainter(clCity)
| 809| 809| 		],
| 810|    |-		new StaticConstraint(avoidClasses(clPath, 0)));
|    | 810|+			new StaticConstraint(avoidClasses(clPath, 0)));
| 811| 811| 
| 812| 812| if (placeNapataWall)
| 813| 813| {

Link to build: https://jenkins.wildfiregames.com/job/differential/267/display/redirect

elexis added a subscriber: elexis.Mar 18 2018, 12:47 PM

I didn't test yet, but it looks promising as it removes the voodoo math.
Maybe playerPlacementCustomAngle can be nuked entirely.

  • startAngle duplication probably better to get rid of. (Not only that its visible, but one could also unintentionally pass a wrong value, maybe a wrong sign.)
  • Could further restrict the function by only passing the angles for one side and computing the ones of the other side using symmetry

I don't know how Jebel Barkal is supposed to look, how close players should be in the center.

It's determined by the resulting gameplay.

  • The desert player should have a chance to get at least a part of the forest.
  • Players should have roughly the same chance to be attacked by gaia. (Since gaia units patrol, they will attack the first unit they see. So if theres one player who is much closer, the gaia units will abort their path to the other players CC and focus that desert player who is already at disadvantage.)
  • The fight between the players in the center should be delayed as far as possible. Consider Gulf Of Bothnia. The match on that map is always the same. Sentry towers in age 1 and a permanent fight until one side is defeated at the place where the opposing teams meet. This is not only monotonous, but it also means that players don't have any time to consider attacking the city or conquering the holy mountain. (The irrigation canals increase the distance between players artificially and even allow players to consider a naval attack if the rest is fortified.)

These constraints result in:

  • Maximize distance between the two teams
  • Maximize distance between desert player and gaia
  • (while still giving the players some amount of space to build at all.)
binaries/data/mods/public/maps/random/guadalquivir_river.js
65 ↗(On Diff #6200)

(Wouldn't decline a rename to continentCenterRotated)

binaries/data/mods/public/maps/random/rmgen-common/player.js
538 ↗(On Diff #6200)

if there are two teams.

560 ↗(On Diff #6200)

Harder to figure out what list, a, b, c are than it need to be, especially since there are two different a and bs. east and west, or playersEast and playersWest maybe?
Would inline length to reduce indirection.
(A ternary for the return value here and below would reveal the symmetry a bit more, but not that much)

593 ↗(On Diff #6200)

"...if there are two teams of arbitrary sizes."

This function also relies on the playerIDs being sorted.
I don't see a use case for a different playerID order while I do see a use case for this returning [playerIDs, playerPositions], so that it can be inlined in the placePlayerBases function.

618 ↗(On Diff #6200)

id -> playerID.
(Would be nice to have the distributePointsOnCircularSegment only once, but it's possible that the cost of removing duplication exeeds the benefit of removing it.)

About the screenshots, upload them here (since elsewhere they will disappear eventually) and add ,width=800.
Guadalquivir looks ok.
Jebel Barkal too, except for the deserted player IMO. A good measure was to have this player slightly above the border of the two biomes. (The map should be optimized for the normal size.)

In D1399#57342, @elexis wrote:

Maybe playerPlacementCustomAngle can be nuked entirely.

(Yes, and similar to circular segments we can create linear segments to make the river placement code cleaner, plus we can get the wrong 4v3 placements on those maps too. Eventually we shouldn't need the primeSort stuff.)

  • startAngle duplication probably better to get rid of. (Not only that its visible, but one could also unintentionally pass a wrong value, maybe a wrong sign.)

You have to test it anyway because angles are weird and inconsistent in 0ad. (See my recent comments in D950, D1037.)

  • Could further restrict the function by only passing the angles for one side and computing the ones of the other side using symmetry

I suppose that's possible in these three maps, and.. probably for future maps too, so okay.

I had a question about if everyone's on the same team (e.g. like we've sometimes done on Jebel Barkal), since this would put them all on one side of the map. Is that okay, or should we instead split the team in half?

binaries/data/mods/public/maps/random/rmgen-common/player.js
538 ↗(On Diff #6200)

(Works for more teams too, teammates will never be placed on opposite sides.)

618 ↗(On Diff #6200)

I also have a playerPlacementArc function, so we could call that twice and concatenate the two arrays. It can be used on a few maps. (The only question was migration where we want the dock angle, but should be possible with angleTo in some way.)

Eventually we shouldn't need the primeSort stuff

How would you get rid of it on River Archipelago (strips always vertical, but playerID ordering is sometimes left vs right, other times top vs bottom)?

I suppose that's possible in these three maps, and.. probably for future maps too, so okay.

If a map doesn't want to ues the symmetry, it can use 2x playerPlacementArc.

I had a question about if everyone's on the same team (e.g. like we've sometimes done on Jebel Barkal), since this would put them all on one side of the map. Is that okay, or should we instead split the team in half?

Do what the players would prefer if it's economical considering the time you have to put into it now and the time that the rest has to put into it afterwards (i.e. yes if its not too complex).
(One team with locked settings won't occur often, but last man standing with all players allied at the beginning is more likely)

binaries/data/mods/public/maps/random/rmgen-common/player.js
538 ↗(On Diff #6200)

Noticed now. That's much better this way actually!

618 ↗(On Diff #6200)

Yes playerPosition.angleTo(mapCenter) (otherwise I would have proposed the more complicated placeDocks from Hellas and Pompeii.)

temple marked 3 inline comments as done.Mar 21 2018, 6:20 AM
In D1399#57441, @elexis wrote:

Eventually we shouldn't need the primeSort stuff

How would you get rid of it on River Archipelago (strips always vertical, but playerID ordering is sometimes left vs right, other times top vs bottom)?

Just call one function or the other for playerPosition rather than doing that for playerIDs.

temple updated this revision to Diff 6243.Mar 21 2018, 6:21 AM
temple edited the summary of this revision. (Show Details)
temple edited the test plan for this revision. (Show Details)

Cleaned up the code a bit.
playerIDs no longer has to be in team order.
If everyone on the same team (e.g. battle against Napata), divide them into two.
Added screenshots to the summary.

Maybe Jebel Barkal still goes too far into the desert? Maybe the two sides could be closer to each other in the middle?

Successful build - Chance fights ever on the side of the prudent.

Linter detected issues:
Executing section Default...
Executing section Source...
Executing section JS...
|    | [NORMAL] ESLintBear (semi):
|    | Missing semicolon.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|  61|  61| 
|  62|  62| g_Map.log("Create the continent body");
|  63|  63| var startAngle = randomAngle();
|  64|    |-var continentCenter = new Vector2D(fractionToTiles(0.5), fractionToTiles(0.7)).rotateAround(startAngle, mapCenter).round()
|    |  64|+var continentCenter = new Vector2D(fractionToTiles(0.5), fractionToTiles(0.7)).rotateAround(startAngle, mapCenter).round();
|  65|  65| createArea(
|  66|  66| 	new ChainPlacer(
|  67|  67| 		2,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 150| 150| 
| 151| 151| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 152| 152| createForests(
| 153|    |- [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
|    | 153|+	[tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 154| 154|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 155| 155|  clForest,
| 156| 156|  forestTrees);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 151| 151| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 152| 152| createForests(
| 153| 153|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 154|    |- [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
|    | 154|+	[avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 155| 155|  clForest,
| 156| 156|  forestTrees);
| 157| 157| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 152| 152| createForests(
| 153| 153|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 154| 154|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 155|    |- clForest,
|    | 155|+	clForest,
| 156| 156|  forestTrees);
| 157| 157| 
| 158| 158| Engine.SetProgress(50);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 153| 153|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 154| 154|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 155| 155|  clForest,
| 156|    |- forestTrees);
|    | 156|+	forestTrees);
| 157| 157| 
| 158| 158| Engine.SetProgress(50);
| 159| 159| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 159| 159| 
| 160| 160| g_Map.log("Creating dirt patches");
| 161| 161| createLayeredPatches(
| 162|    |- [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
|    | 162|+	[scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163| 163|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 160| 160| g_Map.log("Creating dirt patches");
| 161| 161| createLayeredPatches(
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 163|+	[[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 160| 160| g_Map.log("Creating dirt patches");
| 161| 161| createLayeredPatches(
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 163|+ [[tGrass, tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 160| 160| g_Map.log("Creating dirt patches");
| 161| 161| createLayeredPatches(
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 163|+ [[tGrass,tGrassA], [tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 160| 160| g_Map.log("Creating dirt patches");
| 161| 161| createLayeredPatches(
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 163|+ [[tGrass,tGrassA],[tGrassA, tGrassB], [tGrassB,tGrassC]],
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 160| 160| g_Map.log("Creating dirt patches");
| 161| 161| createLayeredPatches(
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 163|+ [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB, tGrassC]],
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| createLayeredPatches(
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163| 163|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164|    |- [1,1],
|    | 164|+	[1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
| 167| 167|  clDirt);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| createLayeredPatches(
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163| 163|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164|    |- [1,1],
|    | 164|+ [1, 1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
| 167| 167|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 163| 163|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164| 164|  [1,1],
| 165|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 165|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
| 167| 167|  clDirt);
| 168| 168| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166|    |- scaleByMapSize(15, 45),
|    | 166|+	scaleByMapSize(15, 45),
| 167| 167|  clDirt);
| 168| 168| 
| 169| 169| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 164| 164|  [1,1],
| 165| 165|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 166| 166|  scaleByMapSize(15, 45),
| 167|    |- clDirt);
|    | 167|+	clDirt);
| 168| 168| 
| 169| 169| g_Map.log("Creating grass patches");
| 170| 170| createPatches(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 168| 168| 
| 169| 169| g_Map.log("Creating grass patches");
| 170| 170| createPatches(
| 171|    |- [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
|    | 171|+	[scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 172| 172|  tGrassPatch,
| 173| 173|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 174| 174|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 169| 169| g_Map.log("Creating grass patches");
| 170| 170| createPatches(
| 171| 171|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 172|    |- tGrassPatch,
|    | 172|+	tGrassPatch,
| 173| 173|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 174| 174|  scaleByMapSize(15, 45),
| 175| 175|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 170| 170| createPatches(
| 171| 171|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 172| 172|  tGrassPatch,
| 173|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 173|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 174| 174|  scaleByMapSize(15, 45),
| 175| 175|  clDirt);
| 176| 176| Engine.SetProgress(55);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 171| 171|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 172| 172|  tGrassPatch,
| 173| 173|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 174|    |- scaleByMapSize(15, 45),
|    | 174|+	scaleByMapSize(15, 45),
| 175| 175|  clDirt);
| 176| 176| Engine.SetProgress(55);
| 177| 177| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 172| 172|  tGrassPatch,
| 173| 173|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 174| 174|  scaleByMapSize(15, 45),
| 175|    |- clDirt);
|    | 175|+	clDirt);
| 176| 176| Engine.SetProgress(55);
| 177| 177| 
| 178| 178| g_Map.log("Creating stone mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 177| 177| 
| 178| 178| g_Map.log("Creating stone mines");
| 179| 179| createMines(
| 180|    |- [
|    | 180|+	[
| 181| 181|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 182| 182|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 183| 183|  ],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 178| 178| g_Map.log("Creating stone mines");
| 179| 179| createMines(
| 180| 180|  [
| 181|    |-  [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
|    | 181|+		[new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 182| 182|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 183| 183|  ],
| 184| 184|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 179| 179| createMines(
| 180| 180|  [
| 181| 181|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 182|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 182|+		[new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 183| 183|  ],
| 184| 184|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 185| 185|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 179| 179| createMines(
| 180| 180|  [
| 181| 181|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 182|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 182|+  [new SimpleObject(oStoneSmall, 2, 5, 1,3)]
| 183| 183|  ],
| 184| 184|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 185| 185|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 179| 179| createMines(
| 180| 180|  [
| 181| 181|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 182|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 182|+  [new SimpleObject(oStoneSmall, 2,5, 1, 3)]
| 183| 183|  ],
| 184| 184|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 185| 185|  clRock);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 180| 180|  [
| 181| 181|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 182| 182|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 183|    |- ],
|    | 183|+	],
| 184| 184|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 185| 185|  clRock);
| 186| 186| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 182| 182|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 183| 183|  ],
| 184|    |- [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | 184|+	[avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 185| 185|  clRock);
| 186| 186| 
| 187| 187| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 182| 182|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 183| 183|  ],
| 184| 184|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 185|    |- clRock);
|    | 185|+	clRock);
| 186| 186| 
| 187| 187| g_Map.log("Creating metal mines");
| 188| 188| createMines(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 186| 186| 
| 187| 187| g_Map.log("Creating metal mines");
| 188| 188| createMines(
| 189|    |- [
|    | 189|+	[
| 190| 190|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 191| 191|  ],
| 192| 192|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 187| 187| g_Map.log("Creating metal mines");
| 188| 188| createMines(
| 189| 189|  [
| 190|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 190|+		[new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 191| 191|  ],
| 192| 192|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 193| 193|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 187| 187| g_Map.log("Creating metal mines");
| 188| 188| createMines(
| 189| 189|  [
| 190|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 190|+  [new SimpleObject(oMetalLarge, 1, 1, 0,4)]
| 191| 191|  ],
| 192| 192|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 193| 193|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 187| 187| g_Map.log("Creating metal mines");
| 188| 188| createMines(
| 189| 189|  [
| 190|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 190|+  [new SimpleObject(oMetalLarge, 1,1, 0, 4)]
| 191| 191|  ],
| 192| 192|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 193| 193|  clMetal
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 188| 188| createMines(
| 189| 189|  [
| 190| 190|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 191|    |- ],
|    | 191|+	],
| 192| 192|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 193| 193|  clMetal
| 194| 194| );
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189|  [
| 190| 190|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 191| 191|  ],
| 192|    |- [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | 192|+	[avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 193| 193|  clMetal
| 194| 194| );
| 195| 195| Engine.SetProgress(65);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 190| 190|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 191| 191|  ],
| 192| 192|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 193|    |- clMetal
|    | 193|+	clMetal
| 194| 194| );
| 195| 195| Engine.SetProgress(65);
| 196| 196| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 272| 272| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 273| 273| 
| 274| 274| setSkySet("cumulus");
| 275|    |-setWaterColor(0.2,0.312,0.522);
|    | 275|+setWaterColor(0.2, 0.312,0.522);
| 276| 276| setWaterTint(0.1,0.1,0.8);
| 277| 277| setWaterWaviness(4.0);
| 278| 278| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 272| 272| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 273| 273| 
| 274| 274| setSkySet("cumulus");
| 275|    |-setWaterColor(0.2,0.312,0.522);
|    | 275|+setWaterColor(0.2,0.312, 0.522);
| 276| 276| setWaterTint(0.1,0.1,0.8);
| 277| 277| setWaterWaviness(4.0);
| 278| 278| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 273| 273| 
| 274| 274| setSkySet("cumulus");
| 275| 275| setWaterColor(0.2,0.312,0.522);
| 276|    |-setWaterTint(0.1,0.1,0.8);
|    | 276|+setWaterTint(0.1, 0.1,0.8);
| 277| 277| setWaterWaviness(4.0);
| 278| 278| setWaterType("lake");
| 279| 279| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 273| 273| 
| 274| 274| setSkySet("cumulus");
| 275| 275| setWaterColor(0.2,0.312,0.522);
| 276|    |-setWaterTint(0.1,0.1,0.8);
|    | 276|+setWaterTint(0.1,0.1, 0.8);
| 277| 277| setWaterWaviness(4.0);
| 278| 278| setWaterType("lake");
| 279| 279| setWaterMurkiness(0.73);

binaries/data/mods/public/maps/random/guadalquivir_river.js
|  84| ·»   fractionToTiles(0.35),
|    | [NORMAL] ESLintBear (no-mixed-spaces-and-tabs):
|    | Mixed spaces and tabs.

binaries/data/mods/public/maps/random/guadalquivir_river.js
|  85| ·»   -startAngle·-·Math.PI·*·0.5,
|    | [NORMAL] ESLintBear (no-mixed-spaces-and-tabs):
|    | Mixed spaces and tabs.

binaries/data/mods/public/maps/random/guadalquivir_river.js
|  86| ·»   0,
|    | [NORMAL] ESLintBear (no-mixed-spaces-and-tabs):
|    | Mixed spaces and tabs.

binaries/data/mods/public/maps/random/guadalquivir_river.js
|  87| ·»   Math.PI·*·0.65);
|    | [NORMAL] ESLintBear (no-mixed-spaces-and-tabs):
|    | Mixed spaces and tabs.

binaries/data/mods/public/maps/random/guadalquivir_river.js
|  64| var·continentCenter·=·new·Vector2D(fractionToTiles(0.5),·fractionToTiles(0.7)).rotateAround(startAngle,·mapCenter).round()
|    | [NORMAL] JSHintBear:
|    | Missing semicolon.
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   2|   2| Engine.LoadLibrary("rmgen-common");
|   3|   3| TILE_CENTERED_HEIGHT_MAP = true;
|   4|   4| 
|   5|    |-const tGrassSpecific = ["new_alpine_grass_d","new_alpine_grass_d", "new_alpine_grass_e"];
|    |   5|+const tGrassSpecific = ["new_alpine_grass_d", "new_alpine_grass_d", "new_alpine_grass_e"];
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|    |-const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|    |   9|+const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c", "alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|   9| const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|    |-const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|    |  11|+const tTopSnow = ["alpine_snow_rocky", "alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d", "alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d", "alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|    |-const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    |  14|+const tLushGrass = ["new_alpine_grass_a", "new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|    |-const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|    |  15|+const tMidRangeCliffs = ["alpine_cliff_b", "alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|    |-const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    |  16|+const tHighRangeCliffs = ["alpine_mountainside", "alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a", "sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b", "sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b", "sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|    |-const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    |  22|+const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b", "alpine_grass_d"];
|  23|  23| const tRoad = "new_alpine_citytile";
|  24|  24| const tRoadWild = "new_alpine_citytile";
|  25|  25| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  40|  40| const aBushMedium = "actor|props/flora/bush_medit_me.xml";
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|    |-const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  43|+const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  44|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|    |-const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  46|+const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  47|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest, tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2, tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2,tForestTransition, tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 5.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|    |-const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  51|+const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+	tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition, tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2, tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition, tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition, tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 229| 229| 			let rest = 2 * (1 - distance / mountainWidth);
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232|    |-				- 1 * (rest - 1.9) +
|    | 232|+				-1 * (rest - 1.9) +
| 233| 233| 				- 4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232| 232| 				- 1 * (rest - 1.9) +
| 233|    |-				- 4 *
|    | 233|+				-4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
| 236| 236| 					(rest - randFloat(0.9, 1.1));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 306| 306| g_Map.log("Creating forests");
| 307| 307| var types = [[tForestTransition, pForestLandVeryLight, pForestLandLight, pForestLand]];
| 308| 308| var size = scaleByMapSize(40, 115) * Math.PI;
| 309|    |-var num = Math.floor(scaleByMapSize(8,40) / types.length);
|    | 309|+var num = Math.floor(scaleByMapSize(8, 40) / types.length);
| 310| 310| for (let type of types)
| 311| 311| 	createAreas(
| 312| 312| 		new ClumpPlacer(size, 0.2, 0.1, Infinity),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 314| 314| 			new LayeredPainter(type, [scaleByMapSize(1, 2), scaleByMapSize(3, 6), scaleByMapSize(3, 6)]),
| 315| 315| 			new TileClassPainter(clForest)
| 316| 316| 		],
| 317|    |-		avoidClasses(clPlayer, 20, clPyrenneans,0, clForest, 7, clWater, 2),
|    | 317|+		avoidClasses(clPlayer, 20, clPyrenneans, 0, clForest, 7, clWater, 2),
| 318| 318| 		num);
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
| 321| 321| g_Map.log("Creating lone trees");
| 322|    |-var num = scaleByMapSize(80,400);
|    | 322|+var num = scaleByMapSize(80, 400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1, 2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1, 3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3), new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1, 2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1, 3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8, clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20);
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 373| 373| 			new TerrainPainter(tDirtyGrass),
| 374| 374| 			new TileClassPainter(clDirt)
| 375| 375| 		],
| 376|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 376|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 377| 377| 		scaleByMapSize(15, 45));
| 378| 378| 
| 379| 379| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 381| 381| 	createAreas(
| 382| 382| 		new ClumpPlacer(size, 0.3, 0.06, 0.5),
| 383| 383| 		new TerrainPainter(tLushGrass),
| 384|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 384|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 385| 385| 		scaleByMapSize(15, 45));
| 386| 386| 
| 387| 387| Engine.SetProgress(70);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup([new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1, 2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0, 1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)]);
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup([new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2, 4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0, 1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3, 6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2, 2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)]);
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup([new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1, 2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0, 2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2, 4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0, 2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)]);
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402| 402| group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
|    | 403|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50);
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
| 406| 406| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2, 5, 1,3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1, 3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1, 1, 0,4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0, 4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4, 16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100);
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before ')'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup([new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1, 3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0, 1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true);
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50);
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup([new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1, 2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0, 1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1, 3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0, 2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true);
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50);
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup([new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5, 7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0, 4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood);
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before '3'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50);
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup([new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2, 3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0, 2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood);
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50);
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup([new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5, 7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0, 4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)], true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood);
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup([new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2, 3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0, 2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood);
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444| 444| group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445|    |-createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
|    | 445|+createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60);
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
| 448| 448| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73, 0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73,0.73, 0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45, 0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45,0.45, 0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4, 0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4,0.4, 0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 208| 208| 
| 209| 209| var layoutKushTemples = [
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211|    |-	({
|    | 211|+		({
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 209| 209| var layoutKushTemples = [
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211| 211| 	({
| 212|    |-		"template": oTempleApedemak,
|    | 212|+			"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211| 211| 	({
| 212| 212| 		"template": oTempleApedemak,
| 213|    |-		"pathOffset": new Vector2D(0, 9),
|    | 213|+			"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
| 216| 216| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 211| 211| 	({
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 214|+			"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
| 216| 216| 	{
| 217| 217| 		"template": oTempleAmun,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215|    |-	})),
|    | 215|+		})),
| 216| 216| 	{
| 217| 217| 		"template": oTempleAmun,
| 218| 218| 		"pathOffset": new Vector2D(0, 12),
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 220| 220| 	},
| 221| 221| 	{
| 222| 222| 		"template": oWonderPtol,
| 223|    |-		"pathOffset": new Vector2D(0,  scaleByMapSize(9, 14)),
|    | 223|+		"pathOffset": new Vector2D(0, scaleByMapSize(9, 14)),
| 224| 224| 		"minMapSize": 0
| 225| 225| 	},
| 226| 226| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 229| 229| 		"minMapSize": 256
| 230| 230| 	},
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232|    |-	({
|    | 232|+		({
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 230| 230| 	},
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232| 232| 	({
| 233|    |-		"template": oTempleApedemak,
|    | 233|+			"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232| 232| 	({
| 233| 233| 		"template": oTempleApedemak,
| 234|    |-		"pathOffset": new Vector2D(0, 9),
|    | 234|+			"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 232| 232| 	({
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 235|+			"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
| 238| 238| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236|    |-	}))
|    | 236|+		}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
| 238| 238| 
| 239| 239| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 411| 411| 
| 412| 412| g_Map.log("Marking water");
| 413| 413| createArea(
| 414|    |-		new MapBoundsPlacer(),
|    | 414|+	new MapBoundsPlacer(),
| 415| 415| 		[
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 412| 412| g_Map.log("Marking water");
| 413| 413| createArea(
| 414| 414| 		new MapBoundsPlacer(),
| 415|    |-		[
|    | 415|+	[
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 413| 413| createArea(
| 414| 414| 		new MapBoundsPlacer(),
| 415| 415| 		[
| 416|    |-			new TileClassPainter(clWater),
|    | 416|+		new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
| 419| 419| 		new HeightConstraint(-Infinity, heightWaterLevel));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 414| 414| 		new MapBoundsPlacer(),
| 415| 415| 		[
| 416| 416| 			new TileClassPainter(clWater),
| 417|    |-			new TileClassUnPainter(clFertileLand)
|    | 417|+		new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
| 419| 419| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 420| 420| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 415| 415| 		[
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418|    |-		],
|    | 418|+	],
| 419| 419| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 420| 420| 
| 421| 421| g_Map.log("Marking desert");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
| 419|    |-		new HeightConstraint(-Infinity, heightWaterLevel));
|    | 419|+	new HeightConstraint(-Infinity, heightWaterLevel));
| 420| 420| 
| 421| 421| g_Map.log("Marking desert");
| 422| 422| createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 450| 450| g_Map.log("Creating irrigation canals");
| 451| 451| var irrigationCanalLocations = [];
| 452| 452| for (let area of irrigationCanalAreas)
| 453|    |-	{
|    | 453|+{
| 454| 454| 		if (!area.getPoints().length ||
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456| 456| 			continue;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 451| 451| var irrigationCanalLocations = [];
| 452| 452| for (let area of irrigationCanalAreas)
| 453| 453| 	{
| 454|    |-		if (!area.getPoints().length ||
|    | 454|+	if (!area.getPoints().length ||
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456| 456| 			continue;
| 457| 457| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 453| 453| 	{
| 454| 454| 		if (!area.getPoints().length ||
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456|    |-			continue;
|    | 456|+		continue;
| 457| 457| 
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456| 456| 			continue;
| 457| 457| 
| 458|    |-		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
|    | 458|+	irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 456| 456| 			continue;
| 457| 457| 
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459|    |-		createArea(
|    | 459|+	createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 457| 457| 
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
| 460|    |-			new MapBoundsPlacer(),
|    | 460|+		new MapBoundsPlacer(),
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461|    |-			[
|    | 461|+		[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 459| 459| 		createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
| 462|    |-				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | 462|+			new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463|    |-				new TileClassPainter(clIrrigationCanal)
|    | 463|+			new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466| 466| 	}
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464|    |-			],
|    | 464|+		],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466| 466| 	}
| 467| 467| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465|    |-			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | 465|+		[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466| 466| 	}
| 467| 467| 
| 468| 468| g_Map.log("Creating passages");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466|    |-	}
|    | 466|+}
| 467| 467| 
| 468| 468| g_Map.log("Creating passages");
| 469| 469| irrigationCanalLocations.sort((a, b) => a - b);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 668| 668| 		let width =
| 669| 669| 			Math.abs(x - gridPointXCenter) == 0 ?
| 670| 670| 				pathWidthCenter :
| 671|    |-			Math.abs(x - gridPointXCenter) == 1 ?
|    | 671|+				Math.abs(x - gridPointXCenter) == 1 ?
| 672| 672| 				pathWidthSecondary :
| 673| 673| 				pathWidth;
| 674| 674| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 669| 669| 			Math.abs(x - gridPointXCenter) == 0 ?
| 670| 670| 				pathWidthCenter :
| 671| 671| 			Math.abs(x - gridPointXCenter) == 1 ?
| 672|    |-				pathWidthSecondary :
|    | 672|+					pathWidthSecondary :
| 673| 673| 				pathWidth;
| 674| 674| 
| 675| 675| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 670| 670| 				pathWidthCenter :
| 671| 671| 			Math.abs(x - gridPointXCenter) == 1 ?
| 672| 672| 				pathWidthSecondary :
| 673|    |-				pathWidth;
|    | 673|+					pathWidth;
| 674| 674| 
| 675| 675| 		createArea(
| 676| 676| 			new PathPlacer(cityGridPosition[y - 1][x], cityGridPosition[y][x], width, 0, 8, 0, 0, Infinity),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 818| 818| g_Map.log("Placing city districts");
| 819| 819| for (let y = 1; y < gridPointsY; ++y)
| 820| 820| 	for (let x = 1; x < gridPointsX; ++x)
| 821|    |-	createArea(
|    | 821|+		createArea(
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 819| 819| for (let y = 1; y < gridPointsY; ++y)
| 820| 820| 	for (let x = 1; x < gridPointsX; ++x)
| 821| 821| 	createArea(
| 822|    |-		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
|    | 822|+			new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 820| 820| 	for (let x = 1; x < gridPointsX; ++x)
| 821| 821| 	createArea(
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823|    |-		[
|    | 823|+			[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 821| 821| 	createArea(
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824|    |-			new TerrainPainter(tRoadDesert),
|    | 824|+				new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827| 827| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825|    |-			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | 825|+				new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827| 827| 		],
| 828| 828| 		new StaticConstraint(avoidClasses(clPath, 0)));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826|    |-			new TileClassPainter(clCity)
|    | 826|+				new TileClassPainter(clCity)
| 827| 827| 		],
| 828| 828| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 829| 829| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827|    |-		],
|    | 827|+			],
| 828| 828| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 829| 829| 
| 830| 830| if (placeNapataWall)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827| 827| 		],
| 828|    |-		new StaticConstraint(avoidClasses(clPath, 0)));
|    | 828|+			new StaticConstraint(avoidClasses(clPath, 0)));
| 829| 829| 
| 830| 830| if (placeNapataWall)
| 831| 831| {

Link to build: https://jenkins.wildfiregames.com/job/differential/291/display/redirect

The playerIDs in east.concat(west) is the same as in playerIDs, right? (Otherwise I wonder how that code could work as intended).
The only reasonable playerIDs values that one can pass is the result of sortAllPlayersByID or a subset (of the same order), right?
(I was wondering if the playerplacement functions shouldn't return [playerIDs, playerPositions]; like most of the other functions do.
But then I recalled that I had to remove it from playerPlacementLine and somehow must have come to the conclusion that it should be removed from the other functions too.)

The screenshots in the summary look acceptable to me.
About JB, the desert player might be moved a slight bit more to the south, even though the result depends a lot on the chosen mapsize IIRC.
(I don't know if as a result, the players might have to be moved a bit more into the middle or not.)

The best playerplacement is the one that maximizes playability.
Since you played that map a lot already, did you perceive the current placement as ideal?
(If so, we could likely just print out the current angles and take round variants of these)

binaries/data/mods/public/maps/random/guadalquivir_river.js
64 ↗(On Diff #6243)

(120 (or 123) chars per line is the edge of what we wanted to tolerate before condemning anyone to an \n)

binaries/data/mods/public/maps/random/pyrenean_sierra.js
169 ↗(On Diff #6243)

(Super nitpicky but the number is usually in front of the PI)

binaries/data/mods/public/maps/random/rmgen-common/player.js
543 ↗(On Diff #6243)

Array.from(new Set( unneeded!?
Also the identity function can be avoided, i.e. that map is equivalent to .map(getPlayerTeam)`

550 ↗(On Diff #6243)

(Math.floor(teams[0].length / 2 long enough so that a variable name might make it easier to read?)

557 ↗(On Diff #6243)

(Nice construct. I'd format it this way:

	return teams.reduce(([east, west], team) =>
		east.length > west.length ?
			[east, west.concat(team)] :
			[east.concat(team), west],
		[[], []]);

)

602 ↗(On Diff #6243)

About the .slice(1), you are invited to change distributePointsOnCircularSegment to have the first point at startAngle and the last point at startAngle + maxAngle, if you want. (Could be a separate patch before or after this one if it becomes too complex.) All use cases except the distributePointsOnCircle function will benefit. (The healer circle on jebel barkal is a use case that was added since the first revision of the patch and we can notice the last point missing a lot.)

613 ↗(On Diff #6243)

:\n

temple marked 5 inline comments as done.Mar 21 2018, 8:05 PM
temple added inline comments.
binaries/data/mods/public/maps/random/rmgen-common/player.js
543 ↗(On Diff #6243)

We want the unique team numbers not all of them, e.g. [1,2] rather than [1,1,1,1,2,2,2,2].

602 ↗(On Diff #6243)

I agree with that change but just to clarify, this would then be slice(1,-1) because we want to ignore the two endpoints. The idea is that the angles define the extent of the area where players can be placed, and then we place them equally spaced within that area (rather than having players on the edge of the area). Anyway, for a separate patch.

temple updated this revision to Diff 6250.Mar 21 2018, 8:07 PM
temple marked an inline comment as done.

Some cleanup.
Changed the Jebel Barkal numbers, same spacing but shifted closer to the middle and away from the desert.

Successful build - Chance fights ever on the side of the prudent.

Linter detected issues:
Executing section Default...
Executing section Source...
Executing section JS...
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 152| 152| 
| 153| 153| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 154| 154| createForests(
| 155|    |- [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
|    | 155|+	[tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156| 156|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157| 157|  clForest,
| 158| 158|  forestTrees);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 153| 153| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 154| 154| createForests(
| 155| 155|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156|    |- [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
|    | 156|+	[avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157| 157|  clForest,
| 158| 158|  forestTrees);
| 159| 159| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 154| 154| createForests(
| 155| 155|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156| 156|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157|    |- clForest,
|    | 157|+	clForest,
| 158| 158|  forestTrees);
| 159| 159| 
| 160| 160| Engine.SetProgress(50);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 155| 155|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156| 156|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157| 157|  clForest,
| 158|    |- forestTrees);
|    | 158|+	forestTrees);
| 159| 159| 
| 160| 160| Engine.SetProgress(50);
| 161| 161| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| 
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164|    |- [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
|    | 164|+	[scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+	[[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass, tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass,tGrassA], [tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass,tGrassA],[tGrassA, tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB, tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166|    |- [1,1],
|    | 166|+	[1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169| 169|  clDirt);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166|    |- [1,1],
|    | 166|+ [1, 1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169| 169|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 167|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169| 169|  clDirt);
| 170| 170| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168|    |- scaleByMapSize(15, 45),
|    | 168|+	scaleByMapSize(15, 45),
| 169| 169|  clDirt);
| 170| 170| 
| 171| 171| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169|    |- clDirt);
|    | 169|+	clDirt);
| 170| 170| 
| 171| 171| g_Map.log("Creating grass patches");
| 172| 172| createPatches(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 170| 170| 
| 171| 171| g_Map.log("Creating grass patches");
| 172| 172| createPatches(
| 173|    |- [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
|    | 173|+	[scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174| 174|  tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 171| 171| g_Map.log("Creating grass patches");
| 172| 172| createPatches(
| 173| 173|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174|    |- tGrassPatch,
|    | 174|+	tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
| 177| 177|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 172| 172| createPatches(
| 173| 173|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174| 174|  tGrassPatch,
| 175|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 175|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
| 177| 177|  clDirt);
| 178| 178| Engine.SetProgress(55);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 173| 173|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174| 174|  tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176|    |- scaleByMapSize(15, 45),
|    | 176|+	scaleByMapSize(15, 45),
| 177| 177|  clDirt);
| 178| 178| Engine.SetProgress(55);
| 179| 179| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 174| 174|  tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
| 177|    |- clDirt);
|    | 177|+	clDirt);
| 178| 178| Engine.SetProgress(55);
| 179| 179| 
| 180| 180| g_Map.log("Creating stone mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 179| 179| 
| 180| 180| g_Map.log("Creating stone mines");
| 181| 181| createMines(
| 182|    |- [
|    | 182|+	[
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 180| 180| g_Map.log("Creating stone mines");
| 181| 181| createMines(
| 182| 182|  [
| 183|    |-  [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
|    | 183|+		[new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181| createMines(
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 184|+		[new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181| createMines(
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 184|+  [new SimpleObject(oStoneSmall, 2, 5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181| createMines(
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 184|+  [new SimpleObject(oStoneSmall, 2,5, 1, 3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185|    |- ],
|    | 185|+	],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
| 188| 188| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186|    |- [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | 186|+	[avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
| 188| 188| 
| 189| 189| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187|    |- clRock);
|    | 187|+	clRock);
| 188| 188| 
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 188| 188| 
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191|    |- [
|    | 191|+	[
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191| 191|  [
| 192|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 192|+		[new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191| 191|  [
| 192|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 192|+  [new SimpleObject(oMetalLarge, 1, 1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191| 191|  [
| 192|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 192|+  [new SimpleObject(oMetalLarge, 1,1, 0, 4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 190| 190| createMines(
| 191| 191|  [
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193|    |- ],
|    | 193|+	],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
| 196| 196| );
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 191| 191|  [
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194|    |- [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | 194|+	[avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
| 196| 196| );
| 197| 197| Engine.SetProgress(65);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195|    |- clMetal
|    | 195|+	clMetal
| 196| 196| );
| 197| 197| Engine.SetProgress(65);
| 198| 198| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 274| 274| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277|    |-setWaterColor(0.2,0.312,0.522);
|    | 277|+setWaterColor(0.2, 0.312,0.522);
| 278| 278| setWaterTint(0.1,0.1,0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 274| 274| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277|    |-setWaterColor(0.2,0.312,0.522);
|    | 277|+setWaterColor(0.2,0.312, 0.522);
| 278| 278| setWaterTint(0.1,0.1,0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277| 277| setWaterColor(0.2,0.312,0.522);
| 278|    |-setWaterTint(0.1,0.1,0.8);
|    | 278|+setWaterTint(0.1, 0.1,0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
| 281| 281| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277| 277| setWaterColor(0.2,0.312,0.522);
| 278|    |-setWaterTint(0.1,0.1,0.8);
|    | 278|+setWaterTint(0.1,0.1, 0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
| 281| 281| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   2|   2| Engine.LoadLibrary("rmgen-common");
|   3|   3| TILE_CENTERED_HEIGHT_MAP = true;
|   4|   4| 
|   5|    |-const tGrassSpecific = ["new_alpine_grass_d","new_alpine_grass_d", "new_alpine_grass_e"];
|    |   5|+const tGrassSpecific = ["new_alpine_grass_d", "new_alpine_grass_d", "new_alpine_grass_e"];
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|    |-const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|    |   9|+const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c", "alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|   9| const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|    |-const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|    |  11|+const tTopSnow = ["alpine_snow_rocky", "alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d", "alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d", "alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|    |-const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    |  14|+const tLushGrass = ["new_alpine_grass_a", "new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|    |-const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|    |  15|+const tMidRangeCliffs = ["alpine_cliff_b", "alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|    |-const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    |  16|+const tHighRangeCliffs = ["alpine_mountainside", "alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a", "sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b", "sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b", "sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|    |-const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    |  22|+const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b", "alpine_grass_d"];
|  23|  23| const tRoad = "new_alpine_citytile";
|  24|  24| const tRoadWild = "new_alpine_citytile";
|  25|  25| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  40|  40| const aBushMedium = "actor|props/flora/bush_medit_me.xml";
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|    |-const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  43|+const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  44|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|    |-const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  46|+const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  47|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest, tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2, tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2,tForestTransition, tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 5.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|    |-const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  51|+const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+	tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition, tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2, tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition, tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition, tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 229| 229| 			let rest = 2 * (1 - distance / mountainWidth);
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232|    |-				- 1 * (rest - 1.9) +
|    | 232|+				-1 * (rest - 1.9) +
| 233| 233| 				- 4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232| 232| 				- 1 * (rest - 1.9) +
| 233|    |-				- 4 *
|    | 233|+				-4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
| 236| 236| 					(rest - randFloat(0.9, 1.1));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 306| 306| g_Map.log("Creating forests");
| 307| 307| var types = [[tForestTransition, pForestLandVeryLight, pForestLandLight, pForestLand]];
| 308| 308| var size = scaleByMapSize(40, 115) * Math.PI;
| 309|    |-var num = Math.floor(scaleByMapSize(8,40) / types.length);
|    | 309|+var num = Math.floor(scaleByMapSize(8, 40) / types.length);
| 310| 310| for (let type of types)
| 311| 311| 	createAreas(
| 312| 312| 		new ClumpPlacer(size, 0.2, 0.1, Infinity),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 314| 314| 			new LayeredPainter(type, [scaleByMapSize(1, 2), scaleByMapSize(3, 6), scaleByMapSize(3, 6)]),
| 315| 315| 			new TileClassPainter(clForest)
| 316| 316| 		],
| 317|    |-		avoidClasses(clPlayer, 20, clPyrenneans,0, clForest, 7, clWater, 2),
|    | 317|+		avoidClasses(clPlayer, 20, clPyrenneans, 0, clForest, 7, clWater, 2),
| 318| 318| 		num);
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
| 321| 321| g_Map.log("Creating lone trees");
| 322|    |-var num = scaleByMapSize(80,400);
|    | 322|+var num = scaleByMapSize(80, 400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1, 2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1, 3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3), new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1, 2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1, 3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8, clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20);
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 373| 373| 			new TerrainPainter(tDirtyGrass),
| 374| 374| 			new TileClassPainter(clDirt)
| 375| 375| 		],
| 376|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 376|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 377| 377| 		scaleByMapSize(15, 45));
| 378| 378| 
| 379| 379| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 381| 381| 	createAreas(
| 382| 382| 		new ClumpPlacer(size, 0.3, 0.06, 0.5),
| 383| 383| 		new TerrainPainter(tLushGrass),
| 384|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 384|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 385| 385| 		scaleByMapSize(15, 45));
| 386| 386| 
| 387| 387| Engine.SetProgress(70);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup([new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1, 2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0, 1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)]);
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup([new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2, 4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0, 1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3, 6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2, 2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)]);
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup([new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1, 2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0, 2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2, 4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0, 2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)]);
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402| 402| group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
|    | 403|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50);
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
| 406| 406| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2, 5, 1,3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1, 3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1, 1, 0,4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0, 4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4, 16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100);
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before ')'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup([new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1, 3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0, 1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true);
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50);
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup([new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1, 2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0, 1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1, 3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0, 2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true);
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50);
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup([new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5, 7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0, 4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood);
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before '3'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50);
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup([new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2, 3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0, 2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood);
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50);
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup([new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5, 7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0, 4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)], true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood);
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup([new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2, 3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0, 2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood);
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444| 444| group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445|    |-createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
|    | 445|+createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60);
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
| 448| 448| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73, 0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73,0.73, 0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45, 0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45,0.45, 0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4, 0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4,0.4, 0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/rmgen-common/player.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/rmgen-common/player.js
| 556| 556| 		east.length > west.length ?
| 557| 557| 			[east, west.concat(team)] :
| 558| 558| 			[east.concat(team), west],
| 559|    |-		[[], []]);
|    | 559|+	[[], []]);
| 560| 560| }
| 561| 561| 
| 562| 562| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 208| 208| 
| 209| 209| var layoutKushTemples = [
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211|    |-	({
|    | 211|+		({
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 209| 209| var layoutKushTemples = [
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211| 211| 	({
| 212|    |-		"template": oTempleApedemak,
|    | 212|+			"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 210| 210| 	...new Array(2).fill(0).map((v, i) =>
| 211| 211| 	({
| 212| 212| 		"template": oTempleApedemak,
| 213|    |-		"pathOffset": new Vector2D(0, 9),
|    | 213|+			"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
| 216| 216| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 211| 211| 	({
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 214|+			"minMapSize": i == 0 ? 320 : 0
| 215| 215| 	})),
| 216| 216| 	{
| 217| 217| 		"template": oTempleAmun,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 212| 212| 		"template": oTempleApedemak,
| 213| 213| 		"pathOffset": new Vector2D(0, 9),
| 214| 214| 		"minMapSize": i == 0 ? 320 : 0
| 215|    |-	})),
|    | 215|+		})),
| 216| 216| 	{
| 217| 217| 		"template": oTempleAmun,
| 218| 218| 		"pathOffset": new Vector2D(0, 12),
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 220| 220| 	},
| 221| 221| 	{
| 222| 222| 		"template": oWonderPtol,
| 223|    |-		"pathOffset": new Vector2D(0,  scaleByMapSize(9, 14)),
|    | 223|+		"pathOffset": new Vector2D(0, scaleByMapSize(9, 14)),
| 224| 224| 		"minMapSize": 0
| 225| 225| 	},
| 226| 226| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 229| 229| 		"minMapSize": 256
| 230| 230| 	},
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232|    |-	({
|    | 232|+		({
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 230| 230| 	},
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232| 232| 	({
| 233|    |-		"template": oTempleApedemak,
|    | 233|+			"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 231| 231| 	...new Array(2).fill(0).map((v, i) =>
| 232| 232| 	({
| 233| 233| 		"template": oTempleApedemak,
| 234|    |-		"pathOffset": new Vector2D(0, 9),
|    | 234|+			"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 232| 232| 	({
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 235|+			"minMapSize": i == 0 ? 320 : 0
| 236| 236| 	}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
| 238| 238| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 233| 233| 		"template": oTempleApedemak,
| 234| 234| 		"pathOffset": new Vector2D(0, 9),
| 235| 235| 		"minMapSize": i == 0 ? 320 : 0
| 236|    |-	}))
|    | 236|+		}))
| 237| 237| ].filter(temple => mapSize >= temple.minMapSize);
| 238| 238| 
| 239| 239| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 411| 411| 
| 412| 412| g_Map.log("Marking water");
| 413| 413| createArea(
| 414|    |-		new MapBoundsPlacer(),
|    | 414|+	new MapBoundsPlacer(),
| 415| 415| 		[
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 412| 412| g_Map.log("Marking water");
| 413| 413| createArea(
| 414| 414| 		new MapBoundsPlacer(),
| 415|    |-		[
|    | 415|+	[
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 413| 413| createArea(
| 414| 414| 		new MapBoundsPlacer(),
| 415| 415| 		[
| 416|    |-			new TileClassPainter(clWater),
|    | 416|+		new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
| 419| 419| 		new HeightConstraint(-Infinity, heightWaterLevel));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 414| 414| 		new MapBoundsPlacer(),
| 415| 415| 		[
| 416| 416| 			new TileClassPainter(clWater),
| 417|    |-			new TileClassUnPainter(clFertileLand)
|    | 417|+		new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
| 419| 419| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 420| 420| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 415| 415| 		[
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418|    |-		],
|    | 418|+	],
| 419| 419| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 420| 420| 
| 421| 421| g_Map.log("Marking desert");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 416| 416| 			new TileClassPainter(clWater),
| 417| 417| 			new TileClassUnPainter(clFertileLand)
| 418| 418| 		],
| 419|    |-		new HeightConstraint(-Infinity, heightWaterLevel));
|    | 419|+	new HeightConstraint(-Infinity, heightWaterLevel));
| 420| 420| 
| 421| 421| g_Map.log("Marking desert");
| 422| 422| createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 450| 450| g_Map.log("Creating irrigation canals");
| 451| 451| var irrigationCanalLocations = [];
| 452| 452| for (let area of irrigationCanalAreas)
| 453|    |-	{
|    | 453|+{
| 454| 454| 		if (!area.getPoints().length ||
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456| 456| 			continue;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 451| 451| var irrigationCanalLocations = [];
| 452| 452| for (let area of irrigationCanalAreas)
| 453| 453| 	{
| 454|    |-		if (!area.getPoints().length ||
|    | 454|+	if (!area.getPoints().length ||
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456| 456| 			continue;
| 457| 457| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 453| 453| 	{
| 454| 454| 		if (!area.getPoints().length ||
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456|    |-			continue;
|    | 456|+		continue;
| 457| 457| 
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 455| 455| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 456| 456| 			continue;
| 457| 457| 
| 458|    |-		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
|    | 458|+	irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 456| 456| 			continue;
| 457| 457| 
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459|    |-		createArea(
|    | 459|+	createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 457| 457| 
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
| 460|    |-			new MapBoundsPlacer(),
|    | 460|+		new MapBoundsPlacer(),
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 458| 458| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 459| 459| 		createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461|    |-			[
|    | 461|+		[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 459| 459| 		createArea(
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
| 462|    |-				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | 462|+			new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 460| 460| 			new MapBoundsPlacer(),
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463|    |-				new TileClassPainter(clIrrigationCanal)
|    | 463|+			new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466| 466| 	}
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 461| 461| 			[
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464|    |-			],
|    | 464|+		],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466| 466| 	}
| 467| 467| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 462| 462| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465|    |-			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | 465|+		[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466| 466| 	}
| 467| 467| 
| 468| 468| g_Map.log("Creating passages");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 463| 463| 				new TileClassPainter(clIrrigationCanal)
| 464| 464| 			],
| 465| 465| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 466|    |-	}
|    | 466|+}
| 467| 467| 
| 468| 468| g_Map.log("Creating passages");
| 469| 469| irrigationCanalLocations.sort((a, b) => a - b);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 668| 668| 		let width =
| 669| 669| 			Math.abs(x - gridPointXCenter) == 0 ?
| 670| 670| 				pathWidthCenter :
| 671|    |-			Math.abs(x - gridPointXCenter) == 1 ?
|    | 671|+				Math.abs(x - gridPointXCenter) == 1 ?
| 672| 672| 				pathWidthSecondary :
| 673| 673| 				pathWidth;
| 674| 674| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 669| 669| 			Math.abs(x - gridPointXCenter) == 0 ?
| 670| 670| 				pathWidthCenter :
| 671| 671| 			Math.abs(x - gridPointXCenter) == 1 ?
| 672|    |-				pathWidthSecondary :
|    | 672|+					pathWidthSecondary :
| 673| 673| 				pathWidth;
| 674| 674| 
| 675| 675| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 670| 670| 				pathWidthCenter :
| 671| 671| 			Math.abs(x - gridPointXCenter) == 1 ?
| 672| 672| 				pathWidthSecondary :
| 673|    |-				pathWidth;
|    | 673|+					pathWidth;
| 674| 674| 
| 675| 675| 		createArea(
| 676| 676| 			new PathPlacer(cityGridPosition[y - 1][x], cityGridPosition[y][x], width, 0, 8, 0, 0, Infinity),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 818| 818| g_Map.log("Placing city districts");
| 819| 819| for (let y = 1; y < gridPointsY; ++y)
| 820| 820| 	for (let x = 1; x < gridPointsX; ++x)
| 821|    |-	createArea(
|    | 821|+		createArea(
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 819| 819| for (let y = 1; y < gridPointsY; ++y)
| 820| 820| 	for (let x = 1; x < gridPointsX; ++x)
| 821| 821| 	createArea(
| 822|    |-		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
|    | 822|+			new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 820| 820| 	for (let x = 1; x < gridPointsX; ++x)
| 821| 821| 	createArea(
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823|    |-		[
|    | 823|+			[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 821| 821| 	createArea(
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824|    |-			new TerrainPainter(tRoadDesert),
|    | 824|+				new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827| 827| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 822| 822| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825|    |-			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | 825|+				new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827| 827| 		],
| 828| 828| 		new StaticConstraint(avoidClasses(clPath, 0)));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 823| 823| 		[
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826|    |-			new TileClassPainter(clCity)
|    | 826|+				new TileClassPainter(clCity)
| 827| 827| 		],
| 828| 828| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 829| 829| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 824| 824| 			new TerrainPainter(tRoadDesert),
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827|    |-		],
|    | 827|+			],
| 828| 828| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 829| 829| 
| 830| 830| if (placeNapataWall)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 825| 825| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 826| 826| 			new TileClassPainter(clCity)
| 827| 827| 		],
| 828|    |-		new StaticConstraint(avoidClasses(clPath, 0)));
|    | 828|+			new StaticConstraint(avoidClasses(clPath, 0)));
| 829| 829| 
| 830| 830| if (placeNapataWall)
| 831| 831| {

Link to build: https://jenkins.wildfiregames.com/job/differential/297/display/redirect

elexis added a comment.Apr 8 2018, 4:24 PM

We should really get this into the release, we've had at least 5 more JB situations with odd playercounts.
While we can't derive the correct numbers from the previous equation on JB, it should still be possible to keep the player positioning mostly identical by comparing screenshots before and after.

binaries/data/mods/public/maps/random/rmgen-common/player.js
550 ↗(On Diff #6250)

I've always used the following formatting, especially dropping these individual spaces for array (how much time I had spent deleting dozens of them that eclipse always adds when pressing a single tab -.-) (leper had at least a strong opinion on having the spaces for the second line of conditions in if-statements)

teams = [
	teams[0].slice(Math.floor(teams[0].length / 2)),
	teams[0].slice(0, Math.floor(teams[0].length / 2))
];
604 ↗(On Diff #6250)

(Looks like the rounding is the only thing that prevents the argument of this being an unneeded proxy function. Espeically since the +1 slice(1) should be annihilated now)

temple added inline comments.Apr 8 2018, 8:35 PM
binaries/data/mods/public/maps/random/rmgen-common/player.js
604 ↗(On Diff #6250)

There's other maps that only need one arc so later this function can be used to make them nicer.
It'll become slice(1, -1) because we don't want to include the two endpoints which will be on the farthest extent of the placement area. E.g. with only one player he should be placed in the center of the area not at one of the edges.

temple updated this revision to Diff 6357.Apr 9 2018, 12:56 AM

Rebase, use 0.05 to 0.5 for Jebel Barkal angles.

In D1399#58764, @elexis wrote:

We should really get this into the release, we've had at least 5 more JB situations with odd playercounts.
While we can't derive the correct numbers from the previous equation on JB, it should still be possible to keep the player positioning mostly identical by comparing screenshots before and after.

I think the numbers are good, but the map is your baby so you can decide. :)

binaries/data/mods/public/maps/random/rmgen-common/player.js
604 ↗(On Diff #6250)

Just realized I repeated my earlier comment. Anyway, it'll be players + 2 and then remove the two endpoints.

Vulcan added a comment.Apr 9 2018, 2:05 AM

Successful build - Chance fights ever on the side of the prudent.

Linter detected issues:
Executing section Default...
Executing section Source...
Executing section JS...
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 152| 152| 
| 153| 153| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 154| 154| createForests(
| 155|    |- [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
|    | 155|+	[tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156| 156|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157| 157|  clForest,
| 158| 158|  forestTrees);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 153| 153| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 154| 154| createForests(
| 155| 155|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156|    |- [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
|    | 156|+	[avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157| 157|  clForest,
| 158| 158|  forestTrees);
| 159| 159| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 154| 154| createForests(
| 155| 155|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156| 156|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157|    |- clForest,
|    | 157|+	clForest,
| 158| 158|  forestTrees);
| 159| 159| 
| 160| 160| Engine.SetProgress(50);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 155| 155|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 156| 156|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 157| 157|  clForest,
| 158|    |- forestTrees);
|    | 158|+	forestTrees);
| 159| 159| 
| 160| 160| Engine.SetProgress(50);
| 161| 161| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| 
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164|    |- [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
|    | 164|+	[scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+	[[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass, tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass,tGrassA], [tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass,tGrassA],[tGrassA, tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| g_Map.log("Creating dirt patches");
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 165|+ [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB, tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166|    |- [1,1],
|    | 166|+	[1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169| 169|  clDirt);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163| createLayeredPatches(
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166|    |- [1,1],
|    | 166|+ [1, 1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169| 169|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 164| 164|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 167|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169| 169|  clDirt);
| 170| 170| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 165| 165|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168|    |- scaleByMapSize(15, 45),
|    | 168|+	scaleByMapSize(15, 45),
| 169| 169|  clDirt);
| 170| 170| 
| 171| 171| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 166| 166|  [1,1],
| 167| 167|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 168| 168|  scaleByMapSize(15, 45),
| 169|    |- clDirt);
|    | 169|+	clDirt);
| 170| 170| 
| 171| 171| g_Map.log("Creating grass patches");
| 172| 172| createPatches(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 170| 170| 
| 171| 171| g_Map.log("Creating grass patches");
| 172| 172| createPatches(
| 173|    |- [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
|    | 173|+	[scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174| 174|  tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 171| 171| g_Map.log("Creating grass patches");
| 172| 172| createPatches(
| 173| 173|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174|    |- tGrassPatch,
|    | 174|+	tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
| 177| 177|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 172| 172| createPatches(
| 173| 173|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174| 174|  tGrassPatch,
| 175|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 175|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
| 177| 177|  clDirt);
| 178| 178| Engine.SetProgress(55);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 173| 173|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 174| 174|  tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176|    |- scaleByMapSize(15, 45),
|    | 176|+	scaleByMapSize(15, 45),
| 177| 177|  clDirt);
| 178| 178| Engine.SetProgress(55);
| 179| 179| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 174| 174|  tGrassPatch,
| 175| 175|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 176| 176|  scaleByMapSize(15, 45),
| 177|    |- clDirt);
|    | 177|+	clDirt);
| 178| 178| Engine.SetProgress(55);
| 179| 179| 
| 180| 180| g_Map.log("Creating stone mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 179| 179| 
| 180| 180| g_Map.log("Creating stone mines");
| 181| 181| createMines(
| 182|    |- [
|    | 182|+	[
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 180| 180| g_Map.log("Creating stone mines");
| 181| 181| createMines(
| 182| 182|  [
| 183|    |-  [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
|    | 183|+		[new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181| createMines(
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 184|+		[new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181| createMines(
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 184|+  [new SimpleObject(oStoneSmall, 2, 5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181| createMines(
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 184|+  [new SimpleObject(oStoneSmall, 2,5, 1, 3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 182| 182|  [
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185|    |- ],
|    | 185|+	],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
| 188| 188| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 183| 183|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186|    |- [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | 186|+	[avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187| 187|  clRock);
| 188| 188| 
| 189| 189| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 184| 184|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 185| 185|  ],
| 186| 186|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 187|    |- clRock);
|    | 187|+	clRock);
| 188| 188| 
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 188| 188| 
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191|    |- [
|    | 191|+	[
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191| 191|  [
| 192|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 192|+		[new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191| 191|  [
| 192|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 192|+  [new SimpleObject(oMetalLarge, 1, 1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| g_Map.log("Creating metal mines");
| 190| 190| createMines(
| 191| 191|  [
| 192|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 192|+  [new SimpleObject(oMetalLarge, 1,1, 0, 4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 190| 190| createMines(
| 191| 191|  [
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193|    |- ],
|    | 193|+	],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
| 196| 196| );
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 191| 191|  [
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194|    |- [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | 194|+	[avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195| 195|  clMetal
| 196| 196| );
| 197| 197| Engine.SetProgress(65);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 192| 192|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 193| 193|  ],
| 194| 194|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 195|    |- clMetal
|    | 195|+	clMetal
| 196| 196| );
| 197| 197| Engine.SetProgress(65);
| 198| 198| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 274| 274| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277|    |-setWaterColor(0.2,0.312,0.522);
|    | 277|+setWaterColor(0.2, 0.312,0.522);
| 278| 278| setWaterTint(0.1,0.1,0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 274| 274| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277|    |-setWaterColor(0.2,0.312,0.522);
|    | 277|+setWaterColor(0.2,0.312, 0.522);
| 278| 278| setWaterTint(0.1,0.1,0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277| 277| setWaterColor(0.2,0.312,0.522);
| 278|    |-setWaterTint(0.1,0.1,0.8);
|    | 278|+setWaterTint(0.1, 0.1,0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
| 281| 281| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 275| 275| 
| 276| 276| setSkySet("cumulus");
| 277| 277| setWaterColor(0.2,0.312,0.522);
| 278|    |-setWaterTint(0.1,0.1,0.8);
|    | 278|+setWaterTint(0.1,0.1, 0.8);
| 279| 279| setWaterWaviness(4.0);
| 280| 280| setWaterType("lake");
| 281| 281| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   2|   2| Engine.LoadLibrary("rmgen-common");
|   3|   3| TILE_CENTERED_HEIGHT_MAP = true;
|   4|   4| 
|   5|    |-const tGrassSpecific = ["new_alpine_grass_d","new_alpine_grass_d", "new_alpine_grass_e"];
|    |   5|+const tGrassSpecific = ["new_alpine_grass_d", "new_alpine_grass_d", "new_alpine_grass_e"];
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|    |-const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|    |   9|+const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c", "alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|   9| const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|    |-const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|    |  11|+const tTopSnow = ["alpine_snow_rocky", "alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d", "alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d", "alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|    |-const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    |  14|+const tLushGrass = ["new_alpine_grass_a", "new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|    |-const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|    |  15|+const tMidRangeCliffs = ["alpine_cliff_b", "alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|    |-const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    |  16|+const tHighRangeCliffs = ["alpine_mountainside", "alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a", "sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b", "sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b", "sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|    |-const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    |  22|+const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b", "alpine_grass_d"];
|  23|  23| const tRoad = "new_alpine_citytile";
|  24|  24| const tRoadWild = "new_alpine_citytile";
|  25|  25| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  40|  40| const aBushMedium = "actor|props/flora/bush_medit_me.xml";
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|    |-const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  43|+const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  44|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|    |-const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  46|+const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  47|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest, tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2, tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2,tForestTransition, tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 5.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|    |-const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  51|+const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+	tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition, tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2, tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition, tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition, tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 229| 229| 			let rest = 2 * (1 - distance / mountainWidth);
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232|    |-				- 1 * (rest - 1.9) +
|    | 232|+				-1 * (rest - 1.9) +
| 233| 233| 				- 4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232| 232| 				- 1 * (rest - 1.9) +
| 233|    |-				- 4 *
|    | 233|+				-4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
| 236| 236| 					(rest - randFloat(0.9, 1.1));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 306| 306| g_Map.log("Creating forests");
| 307| 307| var types = [[tForestTransition, pForestLandVeryLight, pForestLandLight, pForestLand]];
| 308| 308| var size = scaleByMapSize(40, 115) * Math.PI;
| 309|    |-var num = Math.floor(scaleByMapSize(8,40) / types.length);
|    | 309|+var num = Math.floor(scaleByMapSize(8, 40) / types.length);
| 310| 310| for (let type of types)
| 311| 311| 	createAreas(
| 312| 312| 		new ClumpPlacer(size, 0.2, 0.1, Infinity),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 314| 314| 			new LayeredPainter(type, [scaleByMapSize(1, 2), scaleByMapSize(3, 6), scaleByMapSize(3, 6)]),
| 315| 315| 			new TileClassPainter(clForest)
| 316| 316| 		],
| 317|    |-		avoidClasses(clPlayer, 20, clPyrenneans,0, clForest, 7, clWater, 2),
|    | 317|+		avoidClasses(clPlayer, 20, clPyrenneans, 0, clForest, 7, clWater, 2),
| 318| 318| 		num);
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
| 321| 321| g_Map.log("Creating lone trees");
| 322|    |-var num = scaleByMapSize(80,400);
|    | 322|+var num = scaleByMapSize(80, 400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1, 2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1, 3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3), new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1, 2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1, 3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8, clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20);
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 373| 373| 			new TerrainPainter(tDirtyGrass),
| 374| 374| 			new TileClassPainter(clDirt)
| 375| 375| 		],
| 376|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 376|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 377| 377| 		scaleByMapSize(15, 45));
| 378| 378| 
| 379| 379| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 381| 381| 	createAreas(
| 382| 382| 		new ClumpPlacer(size, 0.3, 0.06, 0.5),
| 383| 383| 		new TerrainPainter(tLushGrass),
| 384|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 384|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 385| 385| 		scaleByMapSize(15, 45));
| 386| 386| 
| 387| 387| Engine.SetProgress(70);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup([new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1, 2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0, 1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)]);
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup([new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2, 4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0, 1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3, 6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2, 2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)]);
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup([new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1, 2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0, 2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2, 4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0, 2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)]);
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402| 402| group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
|    | 403|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50);
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
| 406| 406| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2, 5, 1,3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1, 3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1, 1, 0,4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0, 4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4, 16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100);
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before ')'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup([new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1, 3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0, 1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true);
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50);
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup([new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1, 2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0, 1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1, 3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0, 2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true);
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50);
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup([new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5, 7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0, 4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood);
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before '3'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50);
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup([new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2, 3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0, 2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood);
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50);
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup([new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5, 7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0, 4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)], true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood);
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup([new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2, 3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0, 2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood);
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444| 444| group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445|    |-createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
|    | 445|+createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60);
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
| 448| 448| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73, 0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73,0.73, 0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45, 0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45,0.45, 0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4, 0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4,0.4, 0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/rmgen-common/player.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/rmgen-common/player.js
| 561| 561| 		east.length > west.length ?
| 562| 562| 			[east, west.concat(team)] :
| 563| 563| 			[east.concat(team), west],
| 564|    |-		[[], []]);
|    | 564|+	[[], []]);
| 565| 565| }
| 566| 566| 
| 567| 567| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 211| 211| 
| 212| 212| var layoutKushTemples = [
| 213| 213| 	...new Array(2).fill(0).map((v, i) =>
| 214|    |-	({
|    | 214|+		({
| 215| 215| 		"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 212| 212| var layoutKushTemples = [
| 213| 213| 	...new Array(2).fill(0).map((v, i) =>
| 214| 214| 	({
| 215|    |-		"template": oTempleApedemak,
|    | 215|+			"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
| 218| 218| 	})),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 213| 213| 	...new Array(2).fill(0).map((v, i) =>
| 214| 214| 	({
| 215| 215| 		"template": oTempleApedemak,
| 216|    |-		"pathOffset": new Vector2D(0, 9),
|    | 216|+			"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
| 218| 218| 	})),
| 219| 219| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 214| 214| 	({
| 215| 215| 		"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 217|+			"minMapSize": i == 0 ? 320 : 0
| 218| 218| 	})),
| 219| 219| 	{
| 220| 220| 		"template": oTempleAmun,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 215| 215| 		"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
| 218|    |-	})),
|    | 218|+		})),
| 219| 219| 	{
| 220| 220| 		"template": oTempleAmun,
| 221| 221| 		"pathOffset": new Vector2D(0, 12),
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 223| 223| 	},
| 224| 224| 	{
| 225| 225| 		"template": oWonderPtol,
| 226|    |-		"pathOffset": new Vector2D(0,  scaleByMapSize(9, 14)),
|    | 226|+		"pathOffset": new Vector2D(0, scaleByMapSize(9, 14)),
| 227| 227| 		"minMapSize": 0
| 228| 228| 	},
| 229| 229| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 232| 232| 		"minMapSize": 256
| 233| 233| 	},
| 234| 234| 	...new Array(2).fill(0).map((v, i) =>
| 235|    |-	({
|    | 235|+		({
| 236| 236| 		"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 233| 233| 	},
| 234| 234| 	...new Array(2).fill(0).map((v, i) =>
| 235| 235| 	({
| 236|    |-		"template": oTempleApedemak,
|    | 236|+			"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
| 239| 239| 	}))
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 234| 234| 	...new Array(2).fill(0).map((v, i) =>
| 235| 235| 	({
| 236| 236| 		"template": oTempleApedemak,
| 237|    |-		"pathOffset": new Vector2D(0, 9),
|    | 237|+			"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
| 239| 239| 	}))
| 240| 240| ].filter(temple => mapSize >= temple.minMapSize);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 235| 235| 	({
| 236| 236| 		"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 238|+			"minMapSize": i == 0 ? 320 : 0
| 239| 239| 	}))
| 240| 240| ].filter(temple => mapSize >= temple.minMapSize);
| 241| 241| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 236| 236| 		"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
| 239|    |-	}))
|    | 239|+		}))
| 240| 240| ].filter(temple => mapSize >= temple.minMapSize);
| 241| 241| 
| 242| 242| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 415| 415| 
| 416| 416| g_Map.log("Marking water");
| 417| 417| createArea(
| 418|    |-		new MapBoundsPlacer(),
|    | 418|+	new MapBoundsPlacer(),
| 419| 419| 		[
| 420| 420| 			new TileClassPainter(clWater),
| 421| 421| 			new TileClassUnPainter(clFertileLand)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 416| 416| g_Map.log("Marking water");
| 417| 417| createArea(
| 418| 418| 		new MapBoundsPlacer(),
| 419|    |-		[
|    | 419|+	[
| 420| 420| 			new TileClassPainter(clWater),
| 421| 421| 			new TileClassUnPainter(clFertileLand)
| 422| 422| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 417| 417| createArea(
| 418| 418| 		new MapBoundsPlacer(),
| 419| 419| 		[
| 420|    |-			new TileClassPainter(clWater),
|    | 420|+		new TileClassPainter(clWater),
| 421| 421| 			new TileClassUnPainter(clFertileLand)
| 422| 422| 		],
| 423| 423| 		new HeightConstraint(-Infinity, heightWaterLevel));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 418| 418| 		new MapBoundsPlacer(),
| 419| 419| 		[
| 420| 420| 			new TileClassPainter(clWater),
| 421|    |-			new TileClassUnPainter(clFertileLand)
|    | 421|+		new TileClassUnPainter(clFertileLand)
| 422| 422| 		],
| 423| 423| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 424| 424| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 419| 419| 		[
| 420| 420| 			new TileClassPainter(clWater),
| 421| 421| 			new TileClassUnPainter(clFertileLand)
| 422|    |-		],
|    | 422|+	],
| 423| 423| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 424| 424| 
| 425| 425| g_Map.log("Marking desert");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 420| 420| 			new TileClassPainter(clWater),
| 421| 421| 			new TileClassUnPainter(clFertileLand)
| 422| 422| 		],
| 423|    |-		new HeightConstraint(-Infinity, heightWaterLevel));
|    | 423|+	new HeightConstraint(-Infinity, heightWaterLevel));
| 424| 424| 
| 425| 425| g_Map.log("Marking desert");
| 426| 426| createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 454| 454| g_Map.log("Creating irrigation canals");
| 455| 455| var irrigationCanalLocations = [];
| 456| 456| for (let area of irrigationCanalAreas)
| 457|    |-	{
|    | 457|+{
| 458| 458| 		if (!area.getPoints().length ||
| 459| 459| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 460| 460| 			continue;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 455| 455| var irrigationCanalLocations = [];
| 456| 456| for (let area of irrigationCanalAreas)
| 457| 457| 	{
| 458|    |-		if (!area.getPoints().length ||
|    | 458|+	if (!area.getPoints().length ||
| 459| 459| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 460| 460| 			continue;
| 461| 461| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 457| 457| 	{
| 458| 458| 		if (!area.getPoints().length ||
| 459| 459| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 460|    |-			continue;
|    | 460|+		continue;
| 461| 461| 
| 462| 462| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 463| 463| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 459| 459| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 460| 460| 			continue;
| 461| 461| 
| 462|    |-		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
|    | 462|+	irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 463| 463| 		createArea(
| 464| 464| 			new MapBoundsPlacer(),
| 465| 465| 			[
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 460| 460| 			continue;
| 461| 461| 
| 462| 462| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 463|    |-		createArea(
|    | 463|+	createArea(
| 464| 464| 			new MapBoundsPlacer(),
| 465| 465| 			[
| 466| 466| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 461| 461| 
| 462| 462| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 463| 463| 		createArea(
| 464|    |-			new MapBoundsPlacer(),
|    | 464|+		new MapBoundsPlacer(),
| 465| 465| 			[
| 466| 466| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 467| 467| 				new TileClassPainter(clIrrigationCanal)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 462| 462| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 463| 463| 		createArea(
| 464| 464| 			new MapBoundsPlacer(),
| 465|    |-			[
|    | 465|+		[
| 466| 466| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 467| 467| 				new TileClassPainter(clIrrigationCanal)
| 468| 468| 			],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 463| 463| 		createArea(
| 464| 464| 			new MapBoundsPlacer(),
| 465| 465| 			[
| 466|    |-				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | 466|+			new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 467| 467| 				new TileClassPainter(clIrrigationCanal)
| 468| 468| 			],
| 469| 469| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 464| 464| 			new MapBoundsPlacer(),
| 465| 465| 			[
| 466| 466| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 467|    |-				new TileClassPainter(clIrrigationCanal)
|    | 467|+			new TileClassPainter(clIrrigationCanal)
| 468| 468| 			],
| 469| 469| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 470| 470| 	}
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 465| 465| 			[
| 466| 466| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 467| 467| 				new TileClassPainter(clIrrigationCanal)
| 468|    |-			],
|    | 468|+		],
| 469| 469| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 470| 470| 	}
| 471| 471| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 466| 466| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 467| 467| 				new TileClassPainter(clIrrigationCanal)
| 468| 468| 			],
| 469|    |-			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | 469|+		[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 470| 470| 	}
| 471| 471| 
| 472| 472| g_Map.log("Creating passages");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 467| 467| 				new TileClassPainter(clIrrigationCanal)
| 468| 468| 			],
| 469| 469| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 470|    |-	}
|    | 470|+}
| 471| 471| 
| 472| 472| g_Map.log("Creating passages");
| 473| 473| irrigationCanalLocations.sort((a, b) => a - b);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 672| 672| 		let width =
| 673| 673| 			Math.abs(x - gridPointXCenter) == 0 ?
| 674| 674| 				pathWidthCenter :
| 675|    |-			Math.abs(x - gridPointXCenter) == 1 ?
|    | 675|+				Math.abs(x - gridPointXCenter) == 1 ?
| 676| 676| 				pathWidthSecondary :
| 677| 677| 				pathWidth;
| 678| 678| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 673| 673| 			Math.abs(x - gridPointXCenter) == 0 ?
| 674| 674| 				pathWidthCenter :
| 675| 675| 			Math.abs(x - gridPointXCenter) == 1 ?
| 676|    |-				pathWidthSecondary :
|    | 676|+					pathWidthSecondary :
| 677| 677| 				pathWidth;
| 678| 678| 
| 679| 679| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 674| 674| 				pathWidthCenter :
| 675| 675| 			Math.abs(x - gridPointXCenter) == 1 ?
| 676| 676| 				pathWidthSecondary :
| 677|    |-				pathWidth;
|    | 677|+					pathWidth;
| 678| 678| 
| 679| 679| 		createArea(
| 680| 680| 			new PathPlacer(cityGridPosition[y - 1][x], cityGridPosition[y][x], width, 0, 8, 0, 0, Infinity),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 829| 829| g_Map.log("Placing city districts");
| 830| 830| for (let y = 1; y < gridPointsY; ++y)
| 831| 831| 	for (let x = 1; x < gridPointsX; ++x)
| 832|    |-	createArea(
|    | 832|+		createArea(
| 833| 833| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 834| 834| 		[
| 835| 835| 			new TerrainPainter(tRoadDesert),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 830| 830| for (let y = 1; y < gridPointsY; ++y)
| 831| 831| 	for (let x = 1; x < gridPointsX; ++x)
| 832| 832| 	createArea(
| 833|    |-		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
|    | 833|+			new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 834| 834| 		[
| 835| 835| 			new TerrainPainter(tRoadDesert),
| 836| 836| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 831| 831| 	for (let x = 1; x < gridPointsX; ++x)
| 832| 832| 	createArea(
| 833| 833| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 834|    |-		[
|    | 834|+			[
| 835| 835| 			new TerrainPainter(tRoadDesert),
| 836| 836| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 837| 837| 			new TileClassPainter(clCity)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 832| 832| 	createArea(
| 833| 833| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 834| 834| 		[
| 835|    |-			new TerrainPainter(tRoadDesert),
|    | 835|+				new TerrainPainter(tRoadDesert),
| 836| 836| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 837| 837| 			new TileClassPainter(clCity)
| 838| 838| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 833| 833| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 834| 834| 		[
| 835| 835| 			new TerrainPainter(tRoadDesert),
| 836|    |-			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | 836|+				new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 837| 837| 			new TileClassPainter(clCity)
| 838| 838| 		],
| 839| 839| 		new StaticConstraint(avoidClasses(clPath, 0)));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 834| 834| 		[
| 835| 835| 			new TerrainPainter(tRoadDesert),
| 836| 836| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 837|    |-			new TileClassPainter(clCity)
|    | 837|+				new TileClassPainter(clCity)
| 838| 838| 		],
| 839| 839| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 840| 840| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 835| 835| 			new TerrainPainter(tRoadDesert),
| 836| 836| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 837| 837| 			new TileClassPainter(clCity)
| 838|    |-		],
|    | 838|+			],
| 839| 839| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 840| 840| 
| 841| 841| if (placeNapataWall)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 836| 836| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 837| 837| 			new TileClassPainter(clCity)
| 838| 838| 		],
| 839|    |-		new StaticConstraint(avoidClasses(clPath, 0)));
|    | 839|+			new StaticConstraint(avoidClasses(clPath, 0)));
| 840| 840| 
| 841| 841| if (placeNapataWall)
| 842| 842| {

Link to build: https://jenkins.wildfiregames.com/job/differential/369/display/redirect

About JB:
Currently committed angle function returns:

-0
-0.32986722862692824
-0.6597344572538565
-0.9896016858807848

-1.9006635554218247
-2.230530784048753
-2.560398012675681
-2.8902652413026093

So that's exactly 1/2PI between the first and last player position per arc.
Not sure about the slice(-1, 1), i.e. if its more common that the map gives the first and last player position. Can be changed later if its a nuisance.

If I recall correctly (I didn't read the previous comments anymore), I once asked for the desert player to be moved more southwards, explaining the shfited playercenter.
If that is correct, then I had not noticed that this player is already that far out with the current positioning.
My position is that the player locations should remain the same as they currently are, mosty because they are well tested and any deviation from that will either result in players having less space (which is already an issue) or in opposing teams getting closer (which is not desirable either) or the desert player becoming more deserted (which is bad as this player already has bad wood access).

I've try n'errored values until I got the best ones for JB with this iteration of the patch:

const playerPosition = playerPlacementArcs(
	playerIDs,
	mapCenter,
	fractionToTiles(0.38),
	riverAngle - 0.5 * Math.PI,
	riverAngle,
	riverAngle + 0.5 * Math.PI);

(I guess only the first argument should be called riverAngle)
This equation appears to produce the exact same placement as before:

(I didn't test the other two maps this time)

binaries/data/mods/public/maps/random/guadalquivir_river.js
65 ↗(On Diff #6357)

Starting with period isn't something we do elsewhere in the code. (The stance in 2015 by sanderd17 was that the reader might confuse it with a missing semicolon iirc).

83 ↗(On Diff #6357)

This not using the rotated center sounds like a bug, thx

binaries/data/mods/public/maps/random/jebel_barkal.js
407 ↗(On Diff #6357)

Both sides of the diff are hardcoding the riverAngle.

binaries/data/mods/public/maps/random/rmgen-common/player.js
555 ↗(On Diff #6357)

(few code style philosophy: While this is still how arrays with 2 elements and not few characters per line should be formatted IMO, creating a variable for Math.floor(teams[0].length / 2) might also mean that it's some fractions of a second quicker to read, as the reader doesn't have to figure out that the two terms are equal. But when writing it out it seems uglier than the way it is currently, so notsure/meh:

	if (teams.length == 1)
	{
		let idx = Math.floor(teams[0].length / 2);
		teams = [teams[0].slice(idx), teams[0].slice(0, idx)];
	}

)

614 ↗(On Diff #6357)

Isn't it easier and more common to only have 2 angle arguments? The two functions should have the same behavior and the same variable names where possible.
Another inconsistency of the two functionsis the inclusion of the start and end point (slice call).

temple marked an inline comment as done.Apr 11 2018, 8:13 PM
In D1399#58936, @elexis wrote:

Not sure about the slice(-1, 1), i.e. if its more common that the map gives the first and last player position. Can be changed later if its a nuisance.

Look at the 4v4 map, would you want the players placed with the same first and last player position in a 2v2 (or a 1v1)?

4 |---x---x---x---x---|
3 |---x-----x-----x---|
2 |---x-----------x---|
1 |---x---------------|

I think it's better to have the players spaced out equally in the available area:

4 |---x---x---x---x---|
3 |----x----x----x----|
2 |------x-----x------|
1 |---------x---------|
binaries/data/mods/public/maps/random/guadalquivir_river.js
84 ↗(On Diff #6357)

It rotated afterwards so everything still worked out.

binaries/data/mods/public/maps/random/jebel_barkal.js
407 ↗(On Diff #6357)

? Oh, it's just coincidence that 0.05 * Math.PI = riverAngle.

binaries/data/mods/public/maps/random/rmgen-common/player.js
614 ↗(On Diff #6357)

If the map wasn't rotated then the two arcs are from start to end and from -start to -end. But the map can be rotated, so then we have to add angle to all of them.

(Previously I had used four angles: start1, end1, start2, end2, but you pointed out that usually there's symmetry so we don't need all four. But we still need three.)

(Instead of endAngle we could use maxAngle (= endAngle - startAngle), but I don't know if that's better or worse.)

temple updated this revision to Diff 6373.Apr 11 2018, 8:13 PM

Changed Jebel Barkal numbers.

Successful build - Chance fights ever on the side of the prudent.

Linter detected issues:
Executing section Default...
Executing section Source...
Executing section JS...
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 151| 151| 
| 152| 152| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 153| 153| createForests(
| 154|    |- [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
|    | 154|+	[tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 155| 155|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 156| 156|  clForest,
| 157| 157|  forestTrees);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 152| 152| var [forestTrees, stragglerTrees] = getTreeCounts(500, 3000, 0.7);
| 153| 153| createForests(
| 154| 154|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 155|    |- [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
|    | 155|+	[avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 156| 156|  clForest,
| 157| 157|  forestTrees);
| 158| 158| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 153| 153| createForests(
| 154| 154|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 155| 155|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 156|    |- clForest,
|    | 156|+	clForest,
| 157| 157|  forestTrees);
| 158| 158| 
| 159| 159| Engine.SetProgress(50);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 154| 154|  [tGrass, tForestFloorP, tForestFloorC, pForestC, pForestP],
| 155| 155|  [avoidClasses(clPlayer, 20, clForest, 17, clRiver, 1), stayClasses(clLand, 7)],
| 156| 156|  clForest,
| 157|    |- forestTrees);
|    | 157|+	forestTrees);
| 158| 158| 
| 159| 159| Engine.SetProgress(50);
| 160| 160| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 160| 160| 
| 161| 161| g_Map.log("Creating dirt patches");
| 162| 162| createLayeredPatches(
| 163|    |- [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
|    | 163|+	[scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164| 164|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| g_Map.log("Creating dirt patches");
| 162| 162| createLayeredPatches(
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 164|+	[[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| g_Map.log("Creating dirt patches");
| 162| 162| createLayeredPatches(
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 164|+ [[tGrass, tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| g_Map.log("Creating dirt patches");
| 162| 162| createLayeredPatches(
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 164|+ [[tGrass,tGrassA], [tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| g_Map.log("Creating dirt patches");
| 162| 162| createLayeredPatches(
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 164|+ [[tGrass,tGrassA],[tGrassA, tGrassB], [tGrassB,tGrassC]],
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 161| 161| g_Map.log("Creating dirt patches");
| 162| 162| createLayeredPatches(
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164|    |- [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
|    | 164|+ [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB, tGrassC]],
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| createLayeredPatches(
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164| 164|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165|    |- [1,1],
|    | 165|+	[1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
| 168| 168|  clDirt);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 162| 162| createLayeredPatches(
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164| 164|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165|    |- [1,1],
|    | 165|+ [1, 1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
| 168| 168|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 163| 163|  [scaleByMapSize(3, 6), scaleByMapSize(5, 10), scaleByMapSize(8, 21)],
| 164| 164|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165| 165|  [1,1],
| 166|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 166|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
| 168| 168|  clDirt);
| 169| 169| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 164| 164|  [[tGrass,tGrassA],[tGrassA,tGrassB], [tGrassB,tGrassC]],
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167|    |- scaleByMapSize(15, 45),
|    | 167|+	scaleByMapSize(15, 45),
| 168| 168|  clDirt);
| 169| 169| 
| 170| 170| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 165| 165|  [1,1],
| 166| 166|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 167| 167|  scaleByMapSize(15, 45),
| 168|    |- clDirt);
|    | 168|+	clDirt);
| 169| 169| 
| 170| 170| g_Map.log("Creating grass patches");
| 171| 171| createPatches(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 169| 169| 
| 170| 170| g_Map.log("Creating grass patches");
| 171| 171| createPatches(
| 172|    |- [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
|    | 172|+	[scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 173| 173|  tGrassPatch,
| 174| 174|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 175| 175|  scaleByMapSize(15, 45),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 170| 170| g_Map.log("Creating grass patches");
| 171| 171| createPatches(
| 172| 172|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 173|    |- tGrassPatch,
|    | 173|+	tGrassPatch,
| 174| 174|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 175| 175|  scaleByMapSize(15, 45),
| 176| 176|  clDirt);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 171| 171| createPatches(
| 172| 172|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 173| 173|  tGrassPatch,
| 174|    |- [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
|    | 174|+	[avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 175| 175|  scaleByMapSize(15, 45),
| 176| 176|  clDirt);
| 177| 177| Engine.SetProgress(55);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 172| 172|  [scaleByMapSize(2, 4), scaleByMapSize(3, 7), scaleByMapSize(5, 15)],
| 173| 173|  tGrassPatch,
| 174| 174|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 175|    |- scaleByMapSize(15, 45),
|    | 175|+	scaleByMapSize(15, 45),
| 176| 176|  clDirt);
| 177| 177| Engine.SetProgress(55);
| 178| 178| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 173| 173|  tGrassPatch,
| 174| 174|  [avoidClasses(clForest, 0, clDirt, 3, clPlayer, 8, clRiver, 1), stayClasses(clLand, 7)],
| 175| 175|  scaleByMapSize(15, 45),
| 176|    |- clDirt);
|    | 176|+	clDirt);
| 177| 177| Engine.SetProgress(55);
| 178| 178| 
| 179| 179| g_Map.log("Creating stone mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 178| 178| 
| 179| 179| g_Map.log("Creating stone mines");
| 180| 180| createMines(
| 181|    |- [
|    | 181|+	[
| 182| 182|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 183| 183|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 184| 184|  ],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 179| 179| g_Map.log("Creating stone mines");
| 180| 180| createMines(
| 181| 181|  [
| 182|    |-  [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
|    | 182|+		[new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 183| 183|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 184| 184|  ],
| 185| 185|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 180| 180| createMines(
| 181| 181|  [
| 182| 182|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 183|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 183|+		[new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 184| 184|  ],
| 185| 185|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 186| 186|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 180| 180| createMines(
| 181| 181|  [
| 182| 182|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 183|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 183|+  [new SimpleObject(oStoneSmall, 2, 5, 1,3)]
| 184| 184|  ],
| 185| 185|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 186| 186|  clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 180| 180| createMines(
| 181| 181|  [
| 182| 182|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 183|    |-  [new SimpleObject(oStoneSmall, 2,5, 1,3)]
|    | 183|+  [new SimpleObject(oStoneSmall, 2,5, 1, 3)]
| 184| 184|  ],
| 185| 185|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 186| 186|  clRock);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 181| 181|  [
| 182| 182|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 183| 183|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 184|    |- ],
|    | 184|+	],
| 185| 185|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 186| 186|  clRock);
| 187| 187| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 182| 182|   [new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)],
| 183| 183|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 184| 184|  ],
| 185|    |- [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
|    | 185|+	[avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 186| 186|  clRock);
| 187| 187| 
| 188| 188| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 183| 183|   [new SimpleObject(oStoneSmall, 2,5, 1,3)]
| 184| 184|  ],
| 185| 185|  [avoidClasses(clForest, 1, clPlayer, 20, clRock, 10, clRiver, 1), stayClasses(clLand, 5)],
| 186|    |- clRock);
|    | 186|+	clRock);
| 187| 187| 
| 188| 188| g_Map.log("Creating metal mines");
| 189| 189| createMines(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 187| 187| 
| 188| 188| g_Map.log("Creating metal mines");
| 189| 189| createMines(
| 190|    |- [
|    | 190|+	[
| 191| 191|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 192| 192|  ],
| 193| 193|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 2 spaces.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 188| 188| g_Map.log("Creating metal mines");
| 189| 189| createMines(
| 190| 190|  [
| 191|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 191|+		[new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 192| 192|  ],
| 193| 193|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 194| 194|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 188| 188| g_Map.log("Creating metal mines");
| 189| 189| createMines(
| 190| 190|  [
| 191|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 191|+  [new SimpleObject(oMetalLarge, 1, 1, 0,4)]
| 192| 192|  ],
| 193| 193|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 194| 194|  clMetal
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 188| 188| g_Map.log("Creating metal mines");
| 189| 189| createMines(
| 190| 190|  [
| 191|    |-  [new SimpleObject(oMetalLarge, 1,1, 0,4)]
|    | 191|+  [new SimpleObject(oMetalLarge, 1,1, 0, 4)]
| 192| 192|  ],
| 193| 193|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 194| 194|  clMetal
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 189| 189| createMines(
| 190| 190|  [
| 191| 191|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 192|    |- ],
|    | 192|+	],
| 193| 193|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 194| 194|  clMetal
| 195| 195| );
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 190| 190|  [
| 191| 191|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 192| 192|  ],
| 193|    |- [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
|    | 193|+	[avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 194| 194|  clMetal
| 195| 195| );
| 196| 196| Engine.SetProgress(65);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 1 space.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 191| 191|   [new SimpleObject(oMetalLarge, 1,1, 0,4)]
| 192| 192|  ],
| 193| 193|  [avoidClasses(clForest, 1, clPlayer, 20, clMetal, 10, clRock, 5, clRiver, 1), stayClasses(clLand, 5)],
| 194|    |- clMetal
|    | 194|+	clMetal
| 195| 195| );
| 196| 196| Engine.SetProgress(65);
| 197| 197| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 273| 273| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 274| 274| 
| 275| 275| setSkySet("cumulus");
| 276|    |-setWaterColor(0.2,0.312,0.522);
|    | 276|+setWaterColor(0.2, 0.312,0.522);
| 277| 277| setWaterTint(0.1,0.1,0.8);
| 278| 278| setWaterWaviness(4.0);
| 279| 279| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 273| 273| 		avoidClasses(clForest, 1, clMetal, 4, clRock, 4, clFood, 2)]));
| 274| 274| 
| 275| 275| setSkySet("cumulus");
| 276|    |-setWaterColor(0.2,0.312,0.522);
|    | 276|+setWaterColor(0.2,0.312, 0.522);
| 277| 277| setWaterTint(0.1,0.1,0.8);
| 278| 278| setWaterWaviness(4.0);
| 279| 279| setWaterType("lake");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 274| 274| 
| 275| 275| setSkySet("cumulus");
| 276| 276| setWaterColor(0.2,0.312,0.522);
| 277|    |-setWaterTint(0.1,0.1,0.8);
|    | 277|+setWaterTint(0.1, 0.1,0.8);
| 278| 278| setWaterWaviness(4.0);
| 279| 279| setWaterType("lake");
| 280| 280| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/guadalquivir_river.js
| 274| 274| 
| 275| 275| setSkySet("cumulus");
| 276| 276| setWaterColor(0.2,0.312,0.522);
| 277|    |-setWaterTint(0.1,0.1,0.8);
|    | 277|+setWaterTint(0.1,0.1, 0.8);
| 278| 278| setWaterWaviness(4.0);
| 279| 279| setWaterType("lake");
| 280| 280| setWaterMurkiness(0.73);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   2|   2| Engine.LoadLibrary("rmgen-common");
|   3|   3| TILE_CENTERED_HEIGHT_MAP = true;
|   4|   4| 
|   5|    |-const tGrassSpecific = ["new_alpine_grass_d","new_alpine_grass_d", "new_alpine_grass_e"];
|    |   5|+const tGrassSpecific = ["new_alpine_grass_d", "new_alpine_grass_d", "new_alpine_grass_e"];
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   6|   6| const tGrass = ["new_alpine_grass_d", "new_alpine_grass_b", "new_alpine_grass_e"];
|   7|   7| const tGrassMidRange = ["new_alpine_grass_b", "alpine_grass_a"];
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|    |-const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|    |   9|+const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c", "alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|   8|   8| const tGrassHighRange = ["new_alpine_grass_a", "alpine_grass_a", "alpine_grass_rocky"];
|   9|   9| const tHighRocks = ["alpine_cliff_b", "alpine_cliff_c","alpine_cliff_c", "alpine_grass_rocky"];
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|    |-const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|    |  11|+const tTopSnow = ["alpine_snow_rocky", "alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d", "alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  10|  10| const tSnowedRocks = ["alpine_cliff_b", "alpine_cliff_snow"];
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|    |-const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|    |  13|+const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d", "alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  11|  11| const tTopSnow = ["alpine_snow_rocky","alpine_snow_a"];
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|    |-const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|    |  14|+const tLushGrass = ["new_alpine_grass_a", "new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  12|  12| const tTopSnowOnly = ["alpine_snow_a"];
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|    |-const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|    |  15|+const tMidRangeCliffs = ["alpine_cliff_b", "alpine_cliff_c"];
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  13|  13| const tDirtyGrass = ["new_alpine_grass_d","alpine_grass_d","alpine_grass_c", "alpine_grass_b"];
|  14|  14| const tLushGrass = ["new_alpine_grass_a","new_alpine_grass_d"];
|  15|  15| const tMidRangeCliffs = ["alpine_cliff_b","alpine_cliff_c"];
|  16|    |-const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|    |  16|+const tHighRangeCliffs = ["alpine_mountainside", "alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a", "sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b", "sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  16|  16| const tHighRangeCliffs = ["alpine_mountainside","alpine_cliff_snow" ];
|  17|  17| const tSand = ["beach_c", "beach_d"];
|  18|  18| const tSandTransition = ["beach_scrub_50_"];
|  19|    |-const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|    |  19|+const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b", "sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|  22| const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  19|  19| const tWater = ["sand_wet_a","sand_wet_b","sand_wet_b","sand_wet_b"];
|  20|  20| const tGrassLandForest = "alpine_forrestfloor";
|  21|  21| const tGrassLandForest2 = "alpine_grass_d";
|  22|    |-const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b","alpine_grass_d"];
|    |  22|+const tForestTransition = ["new_alpine_grass_d", "new_alpine_grass_b", "alpine_grass_d"];
|  23|  23| const tRoad = "new_alpine_citytile";
|  24|  24| const tRoadWild = "new_alpine_citytile";
|  25|  25| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  40|  40| const aBushMedium = "actor|props/flora/bush_medit_me.xml";
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|    |-const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  43|+const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  41|  41| const aBushSmall = "actor|props/flora/bush_medit_sm.xml";
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  44|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  42|  42| 
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|    |-				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  45|+				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  43|  43| const pForestLand = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|    |-const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|    |  46|+const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine, tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  44|  44| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|    |-				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  47|+				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest, tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2, tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  45|  45| 				   tGrassLandForest,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|    |-				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|    |  48|+				   tGrassLandForest,tGrassLandForest2,tForestTransition, tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 5.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  46|  46| const pForestLandLight = [tGrassLandForest + TERRAIN_SEPARATOR + oPine,tGrassLandForest + TERRAIN_SEPARATOR + oBeech,
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|    |-					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  49|+					tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  47|  47| 				   tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  50|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  48|  48| 				   tGrassLandForest,tGrassLandForest2,tForestTransition,tGrassLandForest2,
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|    |-const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|    |  51|+const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine, tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+	tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition, tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2, tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition, tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  49|  49| 					tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|    |-						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|    |  52|+						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition, tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+	tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest, tForestTransition,tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition, tGrassLandForest2,tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  50|  50| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|    |-						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|    |  53|+						tGrassLandForest,tForestTransition,tGrassLandForest2, tForestTransition,
|  54|  54| 						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 6.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+	tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2, tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2, tGrassLandForest2,tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|  51|  51| const pForestLandVeryLight = [ tGrassLandForest2 + TERRAIN_SEPARATOR + oPine,tGrassLandForest2 + TERRAIN_SEPARATOR + oBeech,
|  52|  52| 						tForestTransition,tGrassLandForest2,tForestTransition,tForestTransition,tForestTransition,
|  53|  53| 						tGrassLandForest,tForestTransition,tGrassLandForest2,tForestTransition,
|  54|    |-						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2,tGrassLandForest2];
|    |  54|+						tGrassLandForest2,tGrassLandForest2,tGrassLandForest2, tGrassLandForest2];
|  55|  55| 
|  56|  56| const heightInit = -100;
|  57|  57| const heightOcean = -22;
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 229| 229| 			let rest = 2 * (1 - distance / mountainWidth);
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232|    |-				- 1 * (rest - 1.9) +
|    | 232|+				-1 * (rest - 1.9) +
| 233| 233| 				- 4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
|    | [NORMAL] ESLintBear (space-unary-ops):
|    | Unexpected space after unary operator '-'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 230| 230| 
| 231| 231| 			let sigmoidX =
| 232| 232| 				- 1 * (rest - 1.9) +
| 233|    |-				- 4 *
|    | 233|+				-4 *
| 234| 234| 					(rest - randFloat(0.9, 1.1)) *
| 235| 235| 					(rest - randFloat(0.9, 1.1)) *
| 236| 236| 					(rest - randFloat(0.9, 1.1));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 306| 306| g_Map.log("Creating forests");
| 307| 307| var types = [[tForestTransition, pForestLandVeryLight, pForestLandLight, pForestLand]];
| 308| 308| var size = scaleByMapSize(40, 115) * Math.PI;
| 309|    |-var num = Math.floor(scaleByMapSize(8,40) / types.length);
|    | 309|+var num = Math.floor(scaleByMapSize(8, 40) / types.length);
| 310| 310| for (let type of types)
| 311| 311| 	createAreas(
| 312| 312| 		new ClumpPlacer(size, 0.2, 0.1, Infinity),
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 314| 314| 			new LayeredPainter(type, [scaleByMapSize(1, 2), scaleByMapSize(3, 6), scaleByMapSize(3, 6)]),
| 315| 315| 			new TileClassPainter(clForest)
| 316| 316| 		],
| 317|    |-		avoidClasses(clPlayer, 20, clPyrenneans,0, clForest, 7, clWater, 2),
|    | 317|+		avoidClasses(clPlayer, 20, clPyrenneans, 0, clForest, 7, clWater, 2),
| 318| 318| 		num);
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 319| 319| Engine.SetProgress(60);
| 320| 320| 
| 321| 321| g_Map.log("Creating lone trees");
| 322|    |-var num = scaleByMapSize(80,400);
|    | 322|+var num = scaleByMapSize(80, 400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1, 2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1, 3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3), new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1, 2, 1,3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 321| 321| g_Map.log("Creating lone trees");
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324|    |-var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
|    | 324|+var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1, 3)], true, clForest);
| 325| 325| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8, clPyrenneans, 1), num, 20 );
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 322| 322| var num = scaleByMapSize(80,400);
| 323| 323| 
| 324| 324| var group = new SimpleGroup([new SimpleObject(oPine, 1,2, 1,3),new SimpleObject(oBeech, 1,2, 1,3)], true, clForest);
| 325|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20 );
|    | 325|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 8,clPyrenneans, 1), num, 20);
| 326| 326| 
| 327| 327| g_Map.log("Painting terrain by height and slope");
| 328| 328| for (let i = 0; i < terrainPerHeight.length; ++i)
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 373| 373| 			new TerrainPainter(tDirtyGrass),
| 374| 374| 			new TileClassPainter(clDirt)
| 375| 375| 		],
| 376|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 376|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 377| 377| 		scaleByMapSize(15, 45));
| 378| 378| 
| 379| 379| g_Map.log("Creating grass patches");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 381| 381| 	createAreas(
| 382| 382| 		new ClumpPlacer(size, 0.3, 0.06, 0.5),
| 383| 383| 		new TerrainPainter(tLushGrass),
| 384|    |-		avoidClasses(clWater, 3, clForest, 0, clPyrenneans,5, clHill, 0, clDirt, 5, clPlayer, 6),
|    | 384|+		avoidClasses(clWater, 3, clForest, 0, clPyrenneans, 5, clHill, 0, clDirt, 5, clPlayer, 6),
| 385| 385| 		scaleByMapSize(15, 45));
| 386| 386| 
| 387| 387| Engine.SetProgress(70);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup([new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1, 2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0, 1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 388| 388| 
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391|    |-var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
|    | 391|+var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)]);
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 389| 389| // making more in dirt areas so as to appear different
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 392|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 390| 390| g_Map.log("Creating small grass tufts");
| 391| 391| var group = new SimpleGroup( [new SimpleObject(aGrassShort, 1,2, 0,1, -Math.PI / 8, Math.PI / 8)] );
| 392| 392| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clHill, 2, clPlayer, 5, clDirt, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 393|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 393|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup([new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2, 4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0, 1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3, 6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2, 2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 393| 393| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396|    |-group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
|    | 396|+group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)]);
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans, 2), scaleByMapSize(13, 200) );
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 394| 394| 
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
|    | 397|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200));
| 398| 398| createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt, 1), scaleByMapSize(13, 200),10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 395| 395| g_Map.log("Creating large grass tufts");
| 396| 396| group = new SimpleGroup( [new SimpleObject(aGrass, 2,4, 0,1.8, -Math.PI / 8, Math.PI / 8), new SimpleObject(aGrassShort, 3,6, 1.2,2.5, -Math.PI / 8, Math.PI / 8)] );
| 397| 397| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clHill, 2, clPlayer, 5, clDirt, 1, clForest, 0, clPyrenneans,2), scaleByMapSize(13, 200) );
| 398|    |-createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200),10);
|    | 398|+createObjectGroupsDeprecated(group, 0, stayClasses(clDirt,1), scaleByMapSize(13, 200), 10);
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup([new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1, 2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0, 2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2, 4, 0,2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0, 2)] );
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 399| 399| Engine.SetProgress(75);
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402|    |-group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
|    | 402|+group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)]);
| 403| 403| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 400| 400| 
| 401| 401| g_Map.log("Creating bushes");
| 402| 402| group = new SimpleGroup( [new SimpleObject(aBushMedium, 1,2, 0,2), new SimpleObject(aBushSmall, 2,4, 0,2)] );
| 403|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50 );
|    | 403|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 2, clPlayer, 1, clPyrenneans, 1), scaleByMapSize(13, 200), 50);
| 404| 404| 
| 405| 405| Engine.SetProgress(80);
| 406| 406| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 406| 406| 
| 407| 407| g_Map.log("Creating stone mines");
| 408| 408| group = new SimpleGroup([new SimpleObject(oStoneSmall, 0, 2, 0, 4, 0, 2 * Math.PI, 1), new SimpleObject(oStoneLarge, 1, 1, 0, 4, 0, 2 * Math.PI, 4)], true, clRock);
| 409|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 409|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2, 5, 1,3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 409| 409| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412|    |-group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
|    | 412|+group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1, 3)], true, clRock);
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4, 16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 410| 410| 
| 411| 411| g_Map.log("Creating small stone quarries");
| 412| 412| group = new SimpleGroup([new SimpleObject(oStoneSmall, 2,5, 1,3)], true, clRock);
| 413|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
|    | 413|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100);
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1, 1, 0,4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 413| 413| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clRock, 8, clPyrenneans, 1),  scaleByMapSize(4,16), 100 );
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416|    |-group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
|    | 416|+group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0, 4)], true, clMetal);
| 417| 417| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4, 16), 100  );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100);
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before ')'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 414| 414| 
| 415| 415| g_Map.log("Creating metal mines");
| 416| 416| group = new SimpleGroup([new SimpleObject(oMetalLarge, 1,1, 0,4)], true, clMetal);
| 417|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100  );
|    | 417|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 1, clPlayer, 20, clMetal, 8, clRock, 5, clPyrenneans, 1), scaleByMapSize(4,16), 100 );
| 418| 418| 
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup([new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1, 3, 0,1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0, 1)], true );
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 419| 419| Engine.SetProgress(85);
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422|    |-group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
|    | 422|+group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true);
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 420| 420| 
| 421| 421| g_Map.log("Creating small decorative rocks");
| 422| 422| group = new SimpleGroup( [new SimpleObject(aRockMedium, 1,3, 0,1)], true );
| 423|    |-createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
|    | 423|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50);
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup([new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1, 2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0, 1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1, 3, 0,2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0, 2)], true );
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 423| 423| createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(16, 262), 50 );
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426|    |-group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
|    | 426|+group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true);
| 427| 427| createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0, avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 424| 424| 
| 425| 425| g_Map.log("Creating large decorative rocks");
| 426| 426| group = new SimpleGroup( [new SimpleObject(aRockLarge, 1,2, 0,1), new SimpleObject(aRockMedium, 1,3, 0,2)], true );
| 427|    |-createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50 );
|    | 427|+createObjectGroupsDeprecated( group, 0,  avoidClasses(clWater, 0, clForest, 0, clPlayer, 0), scaleByMapSize(8, 131), 50);
| 428| 428| 
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup([new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5, 7, 0,4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0, 4)], true, clFood );
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 429| 429| Engine.SetProgress(90);
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432|    |-group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
|    | 432|+group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood);
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'avoidClasses'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before '3'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 430| 430| 
| 431| 431| g_Map.log("Creating deer");
| 432| 432| group = new SimpleGroup( [new SimpleObject(oDeer, 5,7, 0,4)], true, clFood );
| 433|    |-createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
|    | 433|+createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50);
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup([new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2, 3, 0,2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0, 2)], true, clFood );
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 433| 433| createObjectGroupsDeprecated(group, 0,  avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15),  3 * numPlayers, 50 );
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436|    |-group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
|    | 436|+group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood);
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 434| 434| 
| 435| 435| g_Map.log("Creating rabbit");
| 436| 436| group = new SimpleGroup( [new SimpleObject(oRabbit, 2,3, 0,2)], true, clFood );
| 437|    |-createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
|    | 437|+createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50);
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440| 440| group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup([new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5, 7, 0,4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0, 4)],true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)], true, clFood );
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 437| 437| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood,15), 3 * numPlayers, 50 );
| 438| 438| 
| 439| 439| g_Map.log("Creating berry bush");
| 440|    |-group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood );
|    | 440|+group = new SimpleGroup( [new SimpleObject(oBerryBush, 5,7, 0,4)],true, clFood);
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup([new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2, 3, 0,2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0, 2)], true, clFood );
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 441| 441| createObjectGroupsDeprecated(group, 0, avoidClasses(clWater, 3, clForest, 0, clPlayer, 20, clPyrenneans, 1, clFood, 10), randIntInclusive(1, 4) * numPlayers + 2, 50);
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444|    |-group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
|    | 444|+group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood);
| 445| 445| createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
|    | [NORMAL] ESLintBear (space-in-parens):
|    | There should be no spaces inside this paren.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 442| 442| 
| 443| 443| g_Map.log("Creating fish");
| 444| 444| group = new SimpleGroup( [new SimpleObject(oFish, 2,3, 0,2)], true, clFood );
| 445|    |-createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60 );
|    | 445|+createObjectGroupsDeprecated(group, 0, [avoidClasses(clFood, 15), stayClasses(clWater, 6)], 20 * numPlayers, 60);
| 446| 446| 
| 447| 447| placePlayersNomad(clPlayer, avoidClasses(clWater, 4, clPyrenneans, 4, clForest, 1, clMetal, 4, clRock, 4, clFood, 2));
| 448| 448| 
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73, 0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 450| 450| setSunRotation(randomAngle());
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453|    |-setSunColor(0.73,0.73,0.65);
|    | 453|+setSunColor(0.73,0.73, 0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45, 0.45,0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 451| 451| 
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454|    |-setTerrainAmbientColor(0.45,0.45,0.50);
|    | 454|+setTerrainAmbientColor(0.45,0.45, 0.50);
| 455| 455| setUnitsAmbientColor(0.4,0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4, 0.4,0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);
|    | [NORMAL] ESLintBear (comma-spacing):
|    | A space is required after ','.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 452| 452| setSkySet("cumulus");
| 453| 453| setSunColor(0.73,0.73,0.65);
| 454| 454| setTerrainAmbientColor(0.45,0.45,0.50);
| 455|    |-setUnitsAmbientColor(0.4,0.4,0.4);
|    | 455|+setUnitsAmbientColor(0.4,0.4, 0.4);
| 456| 456| setWaterColor(0.263, 0.353, 0.616);
| 457| 457| setWaterTint(0.104, 0.172, 0.563);
| 458| 458| setWaterWaviness(5.0);

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 369| for·(let·size·of·[scaleByMapSize(3,·20),·scaleByMapSize(5,·40),·scaleByMapSize(8,·60)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.

binaries/data/mods/public/maps/random/pyrenean_sierra.js
| 380| for·(let·size·of·[scaleByMapSize(2,·32),·scaleByMapSize(3,·48),·scaleByMapSize(5,·80)])
|    | [NORMAL] ESLintBear (no-shadow):
|    | 'size' is already declared in the upper scope.
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/rmgen-common/player.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/rmgen-common/player.js
| 561| 561| 		east.length > west.length ?
| 562| 562| 			[east, west.concat(team)] :
| 563| 563| 			[east.concat(team), west],
| 564|    |-		[[], []]);
|    | 564|+	[[], []]);
| 565| 565| }
| 566| 566| 
| 567| 567| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 211| 211| 
| 212| 212| var layoutKushTemples = [
| 213| 213| 	...new Array(2).fill(0).map((v, i) =>
| 214|    |-	({
|    | 214|+		({
| 215| 215| 		"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 212| 212| var layoutKushTemples = [
| 213| 213| 	...new Array(2).fill(0).map((v, i) =>
| 214| 214| 	({
| 215|    |-		"template": oTempleApedemak,
|    | 215|+			"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
| 218| 218| 	})),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 213| 213| 	...new Array(2).fill(0).map((v, i) =>
| 214| 214| 	({
| 215| 215| 		"template": oTempleApedemak,
| 216|    |-		"pathOffset": new Vector2D(0, 9),
|    | 216|+			"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
| 218| 218| 	})),
| 219| 219| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 214| 214| 	({
| 215| 215| 		"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 217|+			"minMapSize": i == 0 ? 320 : 0
| 218| 218| 	})),
| 219| 219| 	{
| 220| 220| 		"template": oTempleAmun,
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 215| 215| 		"template": oTempleApedemak,
| 216| 216| 		"pathOffset": new Vector2D(0, 9),
| 217| 217| 		"minMapSize": i == 0 ? 320 : 0
| 218|    |-	})),
|    | 218|+		})),
| 219| 219| 	{
| 220| 220| 		"template": oTempleAmun,
| 221| 221| 		"pathOffset": new Vector2D(0, 12),
|    | [NORMAL] ESLintBear (no-multi-spaces):
|    | Multiple spaces found before 'scaleByMapSize'.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 223| 223| 	},
| 224| 224| 	{
| 225| 225| 		"template": oWonderPtol,
| 226|    |-		"pathOffset": new Vector2D(0,  scaleByMapSize(9, 14)),
|    | 226|+		"pathOffset": new Vector2D(0, scaleByMapSize(9, 14)),
| 227| 227| 		"minMapSize": 0
| 228| 228| 	},
| 229| 229| 	{
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 232| 232| 		"minMapSize": 256
| 233| 233| 	},
| 234| 234| 	...new Array(2).fill(0).map((v, i) =>
| 235|    |-	({
|    | 235|+		({
| 236| 236| 		"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 233| 233| 	},
| 234| 234| 	...new Array(2).fill(0).map((v, i) =>
| 235| 235| 	({
| 236|    |-		"template": oTempleApedemak,
|    | 236|+			"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
| 239| 239| 	}))
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 234| 234| 	...new Array(2).fill(0).map((v, i) =>
| 235| 235| 	({
| 236| 236| 		"template": oTempleApedemak,
| 237|    |-		"pathOffset": new Vector2D(0, 9),
|    | 237|+			"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
| 239| 239| 	}))
| 240| 240| ].filter(temple => mapSize >= temple.minMapSize);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 235| 235| 	({
| 236| 236| 		"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238|    |-		"minMapSize": i == 0 ? 320 : 0
|    | 238|+			"minMapSize": i == 0 ? 320 : 0
| 239| 239| 	}))
| 240| 240| ].filter(temple => mapSize >= temple.minMapSize);
| 241| 241| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 236| 236| 		"template": oTempleApedemak,
| 237| 237| 		"pathOffset": new Vector2D(0, 9),
| 238| 238| 		"minMapSize": i == 0 ? 320 : 0
| 239|    |-	}))
|    | 239|+		}))
| 240| 240| ].filter(temple => mapSize >= temple.minMapSize);
| 241| 241| 
| 242| 242| /**
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 414| 414| 
| 415| 415| g_Map.log("Marking water");
| 416| 416| createArea(
| 417|    |-		new MapBoundsPlacer(),
|    | 417|+	new MapBoundsPlacer(),
| 418| 418| 		[
| 419| 419| 			new TileClassPainter(clWater),
| 420| 420| 			new TileClassUnPainter(clFertileLand)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 415| 415| g_Map.log("Marking water");
| 416| 416| createArea(
| 417| 417| 		new MapBoundsPlacer(),
| 418|    |-		[
|    | 418|+	[
| 419| 419| 			new TileClassPainter(clWater),
| 420| 420| 			new TileClassUnPainter(clFertileLand)
| 421| 421| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 416| 416| createArea(
| 417| 417| 		new MapBoundsPlacer(),
| 418| 418| 		[
| 419|    |-			new TileClassPainter(clWater),
|    | 419|+		new TileClassPainter(clWater),
| 420| 420| 			new TileClassUnPainter(clFertileLand)
| 421| 421| 		],
| 422| 422| 		new HeightConstraint(-Infinity, heightWaterLevel));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 417| 417| 		new MapBoundsPlacer(),
| 418| 418| 		[
| 419| 419| 			new TileClassPainter(clWater),
| 420|    |-			new TileClassUnPainter(clFertileLand)
|    | 420|+		new TileClassUnPainter(clFertileLand)
| 421| 421| 		],
| 422| 422| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 423| 423| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 418| 418| 		[
| 419| 419| 			new TileClassPainter(clWater),
| 420| 420| 			new TileClassUnPainter(clFertileLand)
| 421|    |-		],
|    | 421|+	],
| 422| 422| 		new HeightConstraint(-Infinity, heightWaterLevel));
| 423| 423| 
| 424| 424| g_Map.log("Marking desert");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 419| 419| 			new TileClassPainter(clWater),
| 420| 420| 			new TileClassUnPainter(clFertileLand)
| 421| 421| 		],
| 422|    |-		new HeightConstraint(-Infinity, heightWaterLevel));
|    | 422|+	new HeightConstraint(-Infinity, heightWaterLevel));
| 423| 423| 
| 424| 424| g_Map.log("Marking desert");
| 425| 425| createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 453| 453| g_Map.log("Creating irrigation canals");
| 454| 454| var irrigationCanalLocations = [];
| 455| 455| for (let area of irrigationCanalAreas)
| 456|    |-	{
|    | 456|+{
| 457| 457| 		if (!area.getPoints().length ||
| 458| 458| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 459| 459| 			continue;
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 454| 454| var irrigationCanalLocations = [];
| 455| 455| for (let area of irrigationCanalAreas)
| 456| 456| 	{
| 457|    |-		if (!area.getPoints().length ||
|    | 457|+	if (!area.getPoints().length ||
| 458| 458| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 459| 459| 			continue;
| 460| 460| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 456| 456| 	{
| 457| 457| 		if (!area.getPoints().length ||
| 458| 458| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 459|    |-			continue;
|    | 459|+		continue;
| 460| 460| 
| 461| 461| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 462| 462| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 458| 458| 		    area.getPoints().some(point => !avoidClasses(clPlayer, scaleByMapSize(8, 13), clIrrigationCanal, scaleByMapSize(15, 25)).allows(point)))
| 459| 459| 			continue;
| 460| 460| 
| 461|    |-		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
|    | 461|+	irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 462| 462| 		createArea(
| 463| 463| 			new MapBoundsPlacer(),
| 464| 464| 			[
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 1 tab but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 459| 459| 			continue;
| 460| 460| 
| 461| 461| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 462|    |-		createArea(
|    | 462|+	createArea(
| 463| 463| 			new MapBoundsPlacer(),
| 464| 464| 			[
| 465| 465| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 460| 460| 
| 461| 461| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 462| 462| 		createArea(
| 463|    |-			new MapBoundsPlacer(),
|    | 463|+		new MapBoundsPlacer(),
| 464| 464| 			[
| 465| 465| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 466| 466| 				new TileClassPainter(clIrrigationCanal)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 461| 461| 		irrigationCanalLocations.push(pickRandom(area.getPoints()).clone().rotateAround(riverAngle, mapCenter).x);
| 462| 462| 		createArea(
| 463| 463| 			new MapBoundsPlacer(),
| 464|    |-			[
|    | 464|+		[
| 465| 465| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 466| 466| 				new TileClassPainter(clIrrigationCanal)
| 467| 467| 			],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 462| 462| 		createArea(
| 463| 463| 			new MapBoundsPlacer(),
| 464| 464| 			[
| 465|    |-				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
|    | 465|+			new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 466| 466| 				new TileClassPainter(clIrrigationCanal)
| 467| 467| 			],
| 468| 468| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 463| 463| 			new MapBoundsPlacer(),
| 464| 464| 			[
| 465| 465| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 466|    |-				new TileClassPainter(clIrrigationCanal)
|    | 466|+			new TileClassPainter(clIrrigationCanal)
| 467| 467| 			],
| 468| 468| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 469| 469| 	}
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 464| 464| 			[
| 465| 465| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 466| 466| 				new TileClassPainter(clIrrigationCanal)
| 467|    |-			],
|    | 467|+		],
| 468| 468| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 469| 469| 	}
| 470| 470| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 465| 465| 				new SmoothElevationPainter(ELEVATION_SET, heightIrrigationCanal, 1),
| 466| 466| 				new TileClassPainter(clIrrigationCanal)
| 467| 467| 			],
| 468|    |-			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
|    | 468|+		[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 469| 469| 	}
| 470| 470| 
| 471| 471| g_Map.log("Creating passages");
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 0 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 466| 466| 				new TileClassPainter(clIrrigationCanal)
| 467| 467| 			],
| 468| 468| 			[new StayAreasConstraint([area]), new HeightConstraint(heightIrrigationCanal, heightDesert)]);
| 469|    |-	}
|    | 469|+}
| 470| 470| 
| 471| 471| g_Map.log("Creating passages");
| 472| 472| irrigationCanalLocations.sort((a, b) => a - b);
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 671| 671| 		let width =
| 672| 672| 			Math.abs(x - gridPointXCenter) == 0 ?
| 673| 673| 				pathWidthCenter :
| 674|    |-			Math.abs(x - gridPointXCenter) == 1 ?
|    | 674|+				Math.abs(x - gridPointXCenter) == 1 ?
| 675| 675| 				pathWidthSecondary :
| 676| 676| 				pathWidth;
| 677| 677| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 672| 672| 			Math.abs(x - gridPointXCenter) == 0 ?
| 673| 673| 				pathWidthCenter :
| 674| 674| 			Math.abs(x - gridPointXCenter) == 1 ?
| 675|    |-				pathWidthSecondary :
|    | 675|+					pathWidthSecondary :
| 676| 676| 				pathWidth;
| 677| 677| 
| 678| 678| 		createArea(
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 5 tabs but found 4.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 673| 673| 				pathWidthCenter :
| 674| 674| 			Math.abs(x - gridPointXCenter) == 1 ?
| 675| 675| 				pathWidthSecondary :
| 676|    |-				pathWidth;
|    | 676|+					pathWidth;
| 677| 677| 
| 678| 678| 		createArea(
| 679| 679| 			new PathPlacer(cityGridPosition[y - 1][x], cityGridPosition[y][x], width, 0, 8, 0, 0, Infinity),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 2 tabs but found 1.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 828| 828| g_Map.log("Placing city districts");
| 829| 829| for (let y = 1; y < gridPointsY; ++y)
| 830| 830| 	for (let x = 1; x < gridPointsX; ++x)
| 831|    |-	createArea(
|    | 831|+		createArea(
| 832| 832| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 833| 833| 		[
| 834| 834| 			new TerrainPainter(tRoadDesert),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 829| 829| for (let y = 1; y < gridPointsY; ++y)
| 830| 830| 	for (let x = 1; x < gridPointsX; ++x)
| 831| 831| 	createArea(
| 832|    |-		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
|    | 832|+			new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 833| 833| 		[
| 834| 834| 			new TerrainPainter(tRoadDesert),
| 835| 835| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 830| 830| 	for (let x = 1; x < gridPointsX; ++x)
| 831| 831| 	createArea(
| 832| 832| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 833|    |-		[
|    | 833|+			[
| 834| 834| 			new TerrainPainter(tRoadDesert),
| 835| 835| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 836| 836| 			new TileClassPainter(clCity)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 831| 831| 	createArea(
| 832| 832| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 833| 833| 		[
| 834|    |-			new TerrainPainter(tRoadDesert),
|    | 834|+				new TerrainPainter(tRoadDesert),
| 835| 835| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 836| 836| 			new TileClassPainter(clCity)
| 837| 837| 		],
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 832| 832| 		new ConvexPolygonPlacer([cityGridPosition[y - 1][x - 1], cityGridPosition[y - 1][x], cityGridPosition[y][x - 1], cityGridPosition[y][x]], Infinity),
| 833| 833| 		[
| 834| 834| 			new TerrainPainter(tRoadDesert),
| 835|    |-			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
|    | 835|+				new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 836| 836| 			new TileClassPainter(clCity)
| 837| 837| 		],
| 838| 838| 		new StaticConstraint(avoidClasses(clPath, 0)));
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 4 tabs but found 3.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 833| 833| 		[
| 834| 834| 			new TerrainPainter(tRoadDesert),
| 835| 835| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 836|    |-			new TileClassPainter(clCity)
|    | 836|+				new TileClassPainter(clCity)
| 837| 837| 		],
| 838| 838| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 839| 839| 
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 834| 834| 			new TerrainPainter(tRoadDesert),
| 835| 835| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 836| 836| 			new TileClassPainter(clCity)
| 837|    |-		],
|    | 837|+			],
| 838| 838| 		new StaticConstraint(avoidClasses(clPath, 0)));
| 839| 839| 
| 840| 840| if (placeNapataWall)
|    | [NORMAL] ESLintBear (indent):
|    | Expected indentation of 3 tabs but found 2.
|----|    | /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
|    |++++| /mnt/data/jenkins-phabricator/workspace/differential/binaries/data/mods/public/maps/random/jebel_barkal.js
| 835| 835| 			new CityPainter(layoutKushCity, (-cityGridAngle[y][x - 1] - cityGridAngle[y][x]) / 2, 0),
| 836| 836| 			new TileClassPainter(clCity)
| 837| 837| 		],
| 838|    |-		new StaticConstraint(avoidClasses(clPath, 0)));
|    | 838|+			new StaticConstraint(avoidClasses(clPath, 0)));
| 839| 839| 
| 840| 840| if (placeNapataWall)
| 841| 841| {

Link to build: https://jenkins.wildfiregames.com/job/differential/377/display/redirect

elexis accepted this revision.Apr 12 2018, 1:22 AM

You are right, I focused on the 4v4 situation too much, it's better sliced.
This is true in particular for Pyrenean Sierra, where one player often started at the very edge of the lake if that team had only one player.

The results are fabulous, it's a very important piece in the puzzle of this map! Thanks, lot!



I believe it would also be suitable for Corsica, further advancing the simplification of the code and restoring the previous property of the map to group teams on islands.

binaries/data/mods/public/maps/random/rmgen-common/player.js
614 ↗(On Diff #6357)

Sorry, indeed irreducible.

This revision is now accepted and ready to land.Apr 12 2018, 1:22 AM
This revision was automatically updated to reflect the committed changes.
Owners added a subscriber: Restricted Owners Package.Apr 12 2018, 3:45 AM
In D1399#59002, @elexis wrote:

I believe it would also be suitable for Corsica, further advancing the simplification of the code and restoring the previous property of the map to group teams on islands.

Thanks for the review. Something should be possible for Corsica, I'll look into it.