From 5ba294ffee839e06146269de3d7849b0ea8c38be Mon Sep 17 00:00:00 2001 From: lxy-lxy-lxy <55084073+lxy-lxy-lxy@users.noreply.github.com> Date: Wed, 7 May 2025 23:05:32 +0800 Subject: [PATCH] [Bug] Lock Capsule not locking rarities consistently (#5786) --- src/modifier/modifier-type.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modifier/modifier-type.ts b/src/modifier/modifier-type.ts index 8bd2dc8948a..608eca1157e 100644 --- a/src/modifier/modifier-type.ts +++ b/src/modifier/modifier-type.ts @@ -3640,7 +3640,7 @@ function getNewModifierTypeOption( } tier += upgradeCount; } - } else if (retryCount === 10 && tier) { + } else if (retryCount >= 100 && tier) { retryCount = 0; tier--; }