fix: 충전 팝업의 생선 재화 0 표기 오류 수정
This commit is contained in:
@@ -72,7 +72,7 @@ namespace TON
|
|||||||
|
|
||||||
public void UpdateFishCount()
|
public void UpdateFishCount()
|
||||||
{
|
{
|
||||||
fishAmount.text = string.Format("{0:#,###}", PlayerDataManager.Singleton.fishAmount);
|
fishAmount.text = $"{PlayerDataManager.Singleton.fishAmount:N0}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ namespace TON
|
|||||||
|
|
||||||
public void UpdateFishCount()
|
public void UpdateFishCount()
|
||||||
{
|
{
|
||||||
fishAmount.text = string.Format("{0:#,###}", PlayerDataManager.Singleton.fishAmount);
|
fishAmount.text = $"{PlayerDataManager.Singleton.fishAmount:N0}";
|
||||||
}
|
}
|
||||||
|
|
||||||
// 컨티뉴 버튼 선택 시
|
// 컨티뉴 버튼 선택 시
|
||||||
|
|||||||
Reference in New Issue
Block a user