|
|
|
@@ -1376,9 +1376,9 @@ function makeEntity(info, views, sizes, forms = {}) { |
|
|
|
if (config.autoFoodIntake && view.attributes.weight !== undefined && view.attributes.energyIntake === undefined) { |
|
|
|
view.attributes.energyIntake = { |
|
|
|
name: "Food Intake", |
|
|
|
power: 3, |
|
|
|
power: 3 * 3/4, |
|
|
|
type: "energy", |
|
|
|
base: math.unit(2000 * view.attributes.weight.base.toNumber("lbs") / 150, "kcal") |
|
|
|
base: math.unit(2000 * Math.pow(view.attributes.weight.base.toNumber("lbs") / 150, 3/4), "kcal") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|