From ae47787be8776988dc2b1b9b3ce17e5b20ced0f3 Mon Sep 17 00:00:00 2001 From: Apogeezer <219874095+apogeezer@users.noreply.github.com> Date: Fri, 6 Feb 2026 15:59:14 +0100 Subject: [PATCH] Adjust desynth success penalty for -1 to -7 range --- src/map/utils/synthutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/utils/synthutils.cpp b/src/map/utils/synthutils.cpp index 9527224f439..71b7fa0520c 100644 --- a/src/map/utils/synthutils.cpp +++ b/src/map/utils/synthutils.cpp @@ -610,7 +610,7 @@ auto calculateDesynthResult(CCharEntity* PChar) -> uint8 } else if (synthDifficulty >= 1) { - successRate = 40.0f - 0.05f * (synthDifficulty - 1); + successRate = 40.0f - 5.0f * (synthDifficulty - 1); } else {