Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.
/ Input Public archive

Commit ab968c5

Browse files
committed
Fixes dumb bug
1 parent eeb9106 commit ab968c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/input_check_press_most_recent/input_check_press_most_recent.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
function input_check_press_most_recent()
55
{
6-
var _verb_names = argument[0];
6+
var _verb_names = ((argument_count > 0) && !is_array(argument[0]))? argument[0] : all;
77
var _player_index = ((argument_count > 1) && (argument[1] != undefined))? argument[1] : 0;
88

99
if (_player_index < 0)

0 commit comments

Comments
 (0)