Skip to content

Commit

Permalink
Fixes #62
Browse files Browse the repository at this point in the history
  • Loading branch information
quentincaffeino committed Jul 29, 2021
1 parent f362665 commit 9465b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/quentincaffeino/console/src/ConsoleLine.gd
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func _input(e):
if commands.length == 1:
self.set_text(commands.get_by_index(0).get_name())
else:
for command in commands.getValueIterator():
for command in commands.get_value_iterator():
var name = command.get_name()
Console.write_line('[color=#ffff66][url=%s]%s[/url][/color]' % [ name, name ])
else:
Expand Down

0 comments on commit 9465b4d

Please sign in to comment.