From 69fbe3ed9e5dc871b3cb9f598202c0dfb5b5c5ac Mon Sep 17 00:00:00 2001 From: ACrazyTown Date: Fri, 20 Sep 2024 18:13:17 +0200 Subject: [PATCH] Stop input spam on character select --- source/funkin/ui/charSelect/CharSelectSubState.hx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/funkin/ui/charSelect/CharSelectSubState.hx b/source/funkin/ui/charSelect/CharSelectSubState.hx index 3109dc8f1bb..f3f57263592 100644 --- a/source/funkin/ui/charSelect/CharSelectSubState.hx +++ b/source/funkin/ui/charSelect/CharSelectSubState.hx @@ -791,6 +791,11 @@ class CharSelectSubState extends MusicBeatSubState if (!pressedSelect && controls.ACCEPT) { + spamUp = false; + spamDown = false; + spamLeft = false; + spamRight = false; + cursorConfirmed.visible = true; cursorConfirmed.x = cursor.x - 2; cursorConfirmed.y = cursor.y - 4;