From 800382abb47a69723bf64e9a955e30dd835021ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Thu, 12 Aug 2021 23:16:48 -0700 Subject: [PATCH] minor edits/typos --- MWSE/mods/celediel/ASinkingFeeling/common.lua | 2 +- MWSE/mods/celediel/ASinkingFeeling/main.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MWSE/mods/celediel/ASinkingFeeling/common.lua b/MWSE/mods/celediel/ASinkingFeeling/common.lua index a6c5320..9088b77 100644 --- a/MWSE/mods/celediel/ASinkingFeeling/common.lua +++ b/MWSE/mods/celediel/ASinkingFeeling/common.lua @@ -23,7 +23,7 @@ this.modes = { }, allEquipmentNecroEdit = { value = 3, - description = "Actors are pulled down by their encumbrance percentage multiplied by triple the down-pull multiplier, " .. + description = "Actors are pulled down by double the weight of all equipped gear multiplied by a hundredth of the down-pull multiplier, " .. "except any weight above 135 only counts 10%. Lessens the gap between the lightest and heaviest heavy armours.", }, worstCaseScenario = { diff --git a/MWSE/mods/celediel/ASinkingFeeling/main.lua b/MWSE/mods/celediel/ASinkingFeeling/main.lua index 00dd22d..b75ad6f 100644 --- a/MWSE/mods/celediel/ASinkingFeeling/main.lua +++ b/MWSE/mods/celediel/ASinkingFeeling/main.lua @@ -57,7 +57,7 @@ formulas.allEquipmentNecroEdit = function(actor, ref) -- Thanks Necrolesian for this formula -- https://forums.nexusmods.com/index.php?/topic/10349253-a-sinking-feeling/page-2#entry97870268 local term1 = ((config.multipliers.allEquipment / 100) * totalWeight) * 2 - local term2 = ((config.multipliers.allEquipment / 100) * (totalWeight - 135) * 0.2) + 270 + local term2 = ((config.multipliers.allEquipment / 100) * (totalWeight - 135) * 0.2 + 270) local downPull = math.min(term1, term2) local debugStr = string.format("Pulling %s down by %s (instead of %s) using equipment weight mode (necro edit) (%s total equipment weight)", ref.id, downPull, math.max(term1, term2), totalWeight)