Browse Source

Fix auto swallow size being backwards

master
Fen Dweller 3 years ago
parent
commit
61eeaab4a8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js View File

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



Loading…
Cancel
Save