fix(HomePageCtrl): 修复蚊子数量提示的变量拼接错误
将硬编码的aimMosquitoDataCount字符串替换为实际变量值,修正数量提示显示错误
This commit is contained in:
parent
8d86986875
commit
f9ac8a931b
@ -1441,7 +1441,7 @@ namespace Kill.UI.Pages
|
||||
if(waitToPostMosquitoDatas!=null)
|
||||
StopCoroutine(waitToPostMosquitoDatas);
|
||||
if(mosquitoDatas.Count<=aimMosquitoDataCount)
|
||||
ToastUI.ShowText($"{LanguageManager.Instance.GetLanguage("100309")} {mosquitoDatas.Count}/aimMosquitoDataCount");
|
||||
ToastUI.ShowText($"{LanguageManager.Instance.GetLanguage("100309")} {mosquitoDatas.Count}/{aimMosquitoDataCount}");
|
||||
if(mosquitoDatas.Count>=aimMosquitoDataCount&&aimMosquitoDataCount>0)
|
||||
{
|
||||
LoadingUI.Hide();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user