From 337d176a926853f928af6c7582426fe854b4727a Mon Sep 17 00:00:00 2001 From: Umeboshi Date: Thu, 27 Feb 2025 06:50:11 -0800 Subject: [PATCH] [lua] Correct RangedPDIF Level Correction --- scripts/globals/combat/physical_utilities.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/globals/combat/physical_utilities.lua b/scripts/globals/combat/physical_utilities.lua index 3d3d97c32d7..540cfba44d7 100644 --- a/scripts/globals/combat/physical_utilities.lua +++ b/scripts/globals/combat/physical_utilities.lua @@ -574,7 +574,7 @@ xi.combat.physical.calculateRangedPDIF = function(actor, target, weaponType, wsA local levelDifFactor = 0 if applyLevelCorrection then - levelDifFactor = (actor:getMainLvl() - target:getMainLvl()) * 0.05 + levelDifFactor = (actor:getMainLvl() - target:getMainLvl()) * 0.025 end -- Only players suffer from negative level difference.