From 4747e7723c838718bfade553384ce7cfcc7e77bb Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 30 Dec 2018 17:28:29 -0600 Subject: [PATCH] Removerd some console log statements --- game.js | 1 + recursive-macro.js | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/game.js b/game.js index 467c3f6..9e351e5 100644 --- a/game.js +++ b/game.js @@ -3761,6 +3761,7 @@ function breath(type, style) let sound = getSound("breath", preyMass); update([sound, line, linesummary, newline]); + add_victim_people("breath-" + type, prey); macro.arouse(5); diff --git a/recursive-macro.js b/recursive-macro.js index 15da2a0..659194b 100644 --- a/recursive-macro.js +++ b/recursive-macro.js @@ -494,8 +494,6 @@ function flatten(thing) { let list = []; Object.entries(dict).forEach(function([key, val]) { - console.log(key); - console.log(things[key]) let obj = new things[key](val); obj.contents = []; @@ -503,8 +501,6 @@ function flatten(thing) { list.push(obj); }); - console.log(list); - return new Container(list); }