From bd6ff0364f0c309792223332a723be0d0955c09f Mon Sep 17 00:00:00 2001 From: jsb5468 Date: Wed, 4 Dec 2019 21:07:31 -0500 Subject: [PATCH] Fixed Spacing when entering new biome. look(true) now adds a newline after text. --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index 8d764de..3fdf470 100644 --- a/game.js +++ b/game.js @@ -1823,7 +1823,7 @@ function look(onlyBiome=false) if (onlyBiome == true){ - update([line2]); + update([line2,newline]); } else { desc = desc.concat([newline,line2,newline]); update(desc);