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); }