From 20117125591c8b23581a405e5d3434b3bd574a96 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 15 Sep 2020 19:37:42 -0400 Subject: [PATCH] Fix Snaps's base height and weight --- presets/characters.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/presets/characters.js b/presets/characters.js index efea102f..2eb5e0e5 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -28814,8 +28814,8 @@ characterMakers.push(() => makeCharacter( { name: "Snaps", species: ["cat"], tags: ["anthro"] }, { front: { - height: math.unit(6, "feet"), - weight: math.unit(150, "lb"), + height: math.unit(5 + 2/12, "feet"), + weight: math.unit(120, "lb"), name: "Front", image: { source: "./media/characters/snaps/front.svg", @@ -28824,8 +28824,8 @@ characterMakers.push(() => makeCharacter( } }, back: { - height: math.unit(6, "feet"), - weight: math.unit(150, "lb"), + height: math.unit(5 + 2/12, "feet"), + weight: math.unit(120, "lb"), name: "Back", image: { source: "./media/characters/snaps/back.svg",