From 512fa002b0c3fe3cd50e23605beda95b73066c57 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 28 Dec 2018 19:18:00 -0600 Subject: [PATCH] Fixed breaths lacking a default style --- game.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game.js b/game.js index 218328a..28ddb33 100644 --- a/game.js +++ b/game.js @@ -63,6 +63,8 @@ let macro = "ballDensity": 1000, "breastDensity": 1000, + "breathStyle": "cone", + "scaling": function(value, scale, factor) { return value * Math.pow(scale,factor); }, get height() { return this.scaling(this.baseHeight, this.scale, 1); }, get mass () { return this.scaling(this.baseMass, this.scale, 3); },