Compare commits

..

2 Commits

Author SHA1 Message Date
02efc1b95b Merge branch 'master' of https://git.hoshino.fan/Soullies/ichni_Official 2026-07-10 11:28:32 +08:00
cb65318bc0 改一个点:
Signed-off-by: TRADER_FOER <lhf190@outlook.com>
2026-07-10 11:28:11 +08:00

View File

@@ -91,7 +91,7 @@ namespace Ichni
{
GameManager.Instance.timeDurations = GameManager.Instance.beatmapContainer.gameElementList
.Select(x => (x as IHaveTimeDurationSubmodule)?.timeDurationSubmodule)
.Where(x => x != null && x.startTime > 0 && x.endTime < GameManager.Instance.songInformation.songLength).ToList();
.Where(x => x != null && (x.startTime > 0 || x.endTime < GameManager.Instance.songInformation.songLength)).ToList();
GameManager.Instance.beatmapContainer.gameElementList.ForEach(element => element.WhenStart());
});
});