diff --git a/changelog.md b/changelog.md index 2e2745c0..c09a401b 100644 --- a/changelog.md +++ b/changelog.md @@ -11,6 +11,7 @@ Release 0.17.16 - Feature: Remove the homebrew rules from the modifier bucket, and add MA maneuvers to the bucket. #2023 - Bugfix: Slam calculator appears not to be working #2022 - Bugfix: Importing a Character Causes Endless Error Loop #2019 +- Bugfix: Bug: Lifting and moving things chart breaks with high ST characters #2039 Release 0.17.15 10/31/2024 diff --git a/module/actor/actor-importer.js b/module/actor/actor-importer.js index 29d75943..bf2d98e6 100644 --- a/module/actor/actor-importer.js +++ b/module/actor/actor-importer.js @@ -1537,7 +1537,7 @@ export class ActorImporter { } data.QP.value = qp - let bl_value = parseFloat(calc?.basic_lift.match(/[\d\.]+/g)) + let bl_value = parseDecimalNumber(calc?.basic_lift.match(/[\d,\.]+/g)[0]) let bl_unit = calc?.basic_lift.replace(bl_value + ' ', '') let lm = {} diff --git a/styles/simple.css b/styles/simple.css index 4f8b1284..5be12b6f 100755 --- a/styles/simple.css +++ b/styles/simple.css @@ -730,7 +730,7 @@ } .gga-item { - color: olivedrab; + color: lightgrey; } .gga-child-item {