From 4127b792e6e8c287059b973619d5424143f161c2 Mon Sep 17 00:00:00 2001 From: yjm484 <171359351@qq.com> Date: Thu, 30 Oct 2025 14:33:09 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Scripts/Weapon/WeaponManager.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ColorlessWorld-2024-4-2/Assets/Scripts/Weapon/WeaponManager.cs b/ColorlessWorld-2024-4-2/Assets/Scripts/Weapon/WeaponManager.cs index 3b599b2f..08166268 100644 --- a/ColorlessWorld-2024-4-2/Assets/Scripts/Weapon/WeaponManager.cs +++ b/ColorlessWorld-2024-4-2/Assets/Scripts/Weapon/WeaponManager.cs @@ -1468,6 +1468,16 @@ public class WeaponManager : Singleton { newRarity = Name.WeaponNodeLevel.Basic; }else if (levelDiff == 1) + { + newRarity = Name.WeaponNodeLevel.Simple; + } + break; + case Name.WeaponNodeLevel.Simple: + if (levelDiff == 0 || levelDiff == -1) + { + newRarity = Name.WeaponNodeLevel.Simple; + } + else if (levelDiff == 1) { newRarity = Name.WeaponNodeLevel.Elementary; } @@ -1483,7 +1493,7 @@ public class WeaponManager : Singleton } else if (levelDiff == -1) { - newRarity = Name.WeaponNodeLevel.Basic; + newRarity = Name.WeaponNodeLevel.Simple; } break; case Name.WeaponNodeLevel.Intermediate: