From 61eeaab4a8e021bee3ef6efcef904eaf84bd78c9 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 25 Apr 2022 10:41:34 -0400 Subject: [PATCH] Fix auto swallow size being backwards --- macrovision.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macrovision.js b/macrovision.js index 14f760c4..a78df50a 100644 --- a/macrovision.js +++ b/macrovision.js @@ -1725,7 +1725,7 @@ function makeEntity(info, views, sizes, forms = {}) { name: "Swallow Size", power: 3, type: "volume", - base: math.multiply(size, math.pow(math.divide(math.unit(6, "feet"), view.attributes.height.base), 3)) + base: math.multiply(size, math.pow(math.divide(view.attributes.height.base, math.unit(6, "feet")), 3)) }; }