From 1ba32c8000bbce0286c35191ef6ddcc36055ce82 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 20 Feb 2018 13:23:24 -0500 Subject: [PATCH] Fixed one way to get to NaN scale. Adjusted clusters for homes and skyscrapers --- game.js | 4 +++- recursive-macro.js | 12 ++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/game.js b/game.js index 8c1c07b..b9e0e1c 100644 --- a/game.js +++ b/game.js @@ -343,7 +343,9 @@ function look() var line2 = "" - if (macro.height > 1e6) + if (macro.height > 1e12) + line2 = "You're pretty much everywhere at once."; + else if (macro.height > 1e6) line2 = "You're standing...on pretty much everything at once."; else switch(biome) { diff --git a/recursive-macro.js b/recursive-macro.js index af72611..6e6863d 100644 --- a/recursive-macro.js +++ b/recursive-macro.js @@ -65,13 +65,13 @@ var masses = "Train Car": 5000, "Parking Garage": 100000, "Overpass": 100000, - "Town": 0, - "City": 0, + "Town": 1, + "City": 1, "Continent": 1e12, "Planet": 5.972e24, "Star": 1e40, - "Solar System": 0, - "Galaxy": 0 + "Solar System": 1, + "Galaxy": 1 }; var clusters = @@ -83,9 +83,9 @@ var clusters = "Bus": 1, "Tram": 1, "Motorcycle": 1, - "House": 5, + "House": 20, "Barn": 1, - "Small Skyscraper": 10, + "Small Skyscraper": 5, "Train": 2, "Train Car": 1, "Parking Garage": 1,