From 2e434f56413e59560181f10c9a59ff394c9862ca Mon Sep 17 00:00:00 2001 From: Jay <96156114+jaydev00a@users.noreply.github.com> Date: Wed, 14 May 2025 18:03:54 +0900 Subject: [PATCH] =?UTF-8?q?DEG-168=20[FIX]=20=ED=94=BC=EB=93=9C=EB=B0=B1?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/KSH/PlayerStats.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Assets/KSH/PlayerStats.cs b/Assets/KSH/PlayerStats.cs index addc5bdc..42192c68 100644 --- a/Assets/KSH/PlayerStats.cs +++ b/Assets/KSH/PlayerStats.cs @@ -218,10 +218,7 @@ public class PlayerStats : MonoBehaviour,ISaveable // 순수 스탯 변경 적용 ModifyTime(effect.timeChange, actionType); ModifyHealth(effect.healthChange); - if (Mathf.Abs(effect.reputationChange) > 0.01f) - { - ModifyReputation(effect.reputationChange); - } + ModifyReputation(effect.reputationChange); // UI 업데이트용 OnStatsChanged?.Invoke(new StatsChangeData(TimeStat, HealthStat, ReputationStat));