From 93b7071c7ca93e7300e9ce62766ae9407a33195a Mon Sep 17 00:00:00 2001 From: Betopia <73242725+betpowo@users.noreply.github.com> Date: Thu, 2 Apr 2026 17:02:48 -0400 Subject: [PATCH] onPostInputUpdate is now an event since it had practically no info passed onto it it was basically useless. but now there is info so now it can actually be used to like get the finalized changes done inside onInputUpdate ## will break mods that do use this function, as a required argument has been added --- source/funkin/game/StrumLine.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/funkin/game/StrumLine.hx b/source/funkin/game/StrumLine.hx index 319f64ac67..fca491ca99 100644 --- a/source/funkin/game/StrumLine.hx +++ b/source/funkin/game/StrumLine.hx @@ -343,7 +343,7 @@ class StrumLine extends FlxTypedGroup { str.updatePlayerInput(__pressed[str.ID], __justPressed[str.ID], __justReleased[str.ID]); }); - PlayState.instance.gameAndCharsCall("onPostInputUpdate"); + PlayState.instance.gameAndCharsEvent("onPostInputUpdate", event); } /** @@ -475,4 +475,4 @@ class StrumLine extends FlxTypedGroup { return animSuffix == "-alt"; } #end -} \ No newline at end of file +}