From b0dcd06b383e1585bc9b281a2fc62314f019e56c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Tue, 2 Sep 2025 08:02:32 +0200 Subject: [PATCH] Add one more comment --- osu.Game/Screens/Edit/GameplayTest/EditorPlayer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/Screens/Edit/GameplayTest/EditorPlayer.cs b/osu.Game/Screens/Edit/GameplayTest/EditorPlayer.cs index 90996fda6f..0b6c9960c8 100644 --- a/osu.Game/Screens/Edit/GameplayTest/EditorPlayer.cs +++ b/osu.Game/Screens/Edit/GameplayTest/EditorPlayer.cs @@ -59,6 +59,8 @@ namespace osu.Game.Screens.Edit.GameplayTest { base.LoadAsyncComplete(); + // `preventMissOnPreviousHitObjects()` needs to be called to install its hooks before drawable hit objects get the chance to run update logic, + // because it will not work otherwise due to being too late (various effects of the objects getting missed will have already taken place). if (DrawableRuleset != null) preventMissOnPreviousHitObjects(); }