From 6b8d82a8c757abb7db4536cc8190ac383942a4c7 Mon Sep 17 00:00:00 2001 From: Alynne Date: Wed, 13 Nov 2024 15:07:16 -0500 Subject: [PATCH] Update Functions-(Advanced-Checkers).md --- docs/8.0/Functions-(Advanced-Checkers).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/8.0/Functions-(Advanced-Checkers).md b/docs/8.0/Functions-(Advanced-Checkers).md index f72b95c4..e22e1fa7 100644 --- a/docs/8.0/Functions-(Advanced-Checkers).md +++ b/docs/8.0/Functions-(Advanced-Checkers).md @@ -222,7 +222,7 @@ If an array of [verbs](Verbs-and-Bindings) is provided for the `verb` parameter, ```gml //Crouch when we press the "duck" verb -if (input_check_press("duck")) +if (input_check_pressed("duck")) { sprite_index = spr_player_crouch; max_speed = 4;