diff --git a/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View2/GeneralInfoPopup_HomeLandUpgrade.lua b/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View2/GeneralInfoPopup_HomeLandUpgrade.lua index 1e32a52fea..0ad3bc92b7 100644 --- a/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View2/GeneralInfoPopup_HomeLandUpgrade.lua +++ b/Assets/ManagedResources/~Lua/Modules/GeneralPanel/View2/GeneralInfoPopup_HomeLandUpgrade.lua @@ -145,9 +145,9 @@ function this:CulculateTime(time) elseif time >= 60 and time < 3600 then return math.floor(time/60).."分"..(time%60).."秒" elseif time >= 3600 and time < 86400 then - return math.floor(time/3600).."时"..math.floor(time/60).."分" + return math.floor(time/3600).."时"..math.floor((time%3600)/60).."分" elseif time >= 86400 then - return math.floor(time/86400).."天"..math.floor(time/3600).."时" + return math.floor(time/86400).."天"..math.floor((time%86400)/3600).."时" end end