少年修仙传客户端代码仓库
10366 【越南】【英语】【BT】【砍树】仙盟攻城战-客户端 修复赛程日期显示
1个文件已修改
4 ■■■■ 已修改文件
System/FairySiege/FairySiegeScheduleTimeCell.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/FairySiege/FairySiegeScheduleTimeCell.cs
@@ -46,7 +46,7 @@
            nowDate.year = startDate.year;
            nowDate.month = startDate.month;
            nowDate.day = startDate.day;
            nowDate.AddDays(Mathf.Max(startDay - 1, 0));
            nowDate = nowDate.AddDays(Mathf.Max(startDay - 1, 0));
            textBuilder.Append(nowDate.ToDisplay());
            textBuilder.Append(string.Format(" {0}:{1}", startHour.ToString("D2"), startMinute.ToString("D2")));
            textBuilder.Append(" - ");
@@ -54,7 +54,7 @@
            endDate.year = startDate.year;
            endDate.month = startDate.month;
            endDate.day = startDate.day;
            endDate.AddDays(Mathf.Max(endDay - 1, 0));
            endDate = endDate.AddDays(Mathf.Max(endDay - 1, 0));
            textBuilder.Append(endDate.ToDisplay());
            textBuilder.Append(string.Format(" {0}:{1}", endHour.ToString("D2"), endMinute.ToString("D2")));
            return textBuilder.ToString();