zhaoyang 3 лет назад
Родитель
Сommit
5d10b52aca
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      GameClient/Assets/Game/HotUpdate/Views/Travel/TravelView.cs

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Views/Travel/TravelView.cs

@@ -89,7 +89,7 @@ namespace GFGGame
             {
                 long endTime = TravelDataManager.Instance.TravelData.CreationTime + TravelDataManager.Instance.TravelData.TravelNeedHour * TimeUtil.SECOND_PER_HOUR * 1000;
                 long curTime = TimeHelper.ServerNow();
-                _ui.m_txtTime.text = string.Format("大约{0}后归来", TimeUtil.FormattingTime(curTime, endTime));
+                _ui.m_txtTime.text = "";
                 int secCount = (int)((endTime - curTime) / 1000);
                 Timers.inst.Add(1, secCount + 2, UpdateTime);
             }