mirror of
https://codeberg.org/StreamGraph/StreamGraph.git
synced 2024-11-13 19:49:55 +01:00
fix alias generation in NodeDB
This commit is contained in:
parent
49b8a23281
commit
e2822536b1
1 changed files with 2 additions and 2 deletions
|
@ -50,8 +50,8 @@ func create_descriptors(path: String) -> void:
|
|||
var script_path := path.path_join(current_file)
|
||||
var node: DeckNode = load(script_path).new() as DeckNode
|
||||
var aliases: String = node.aliases.reduce(
|
||||
func(accum, el) -> void:
|
||||
accum += el
|
||||
func(accum, el):
|
||||
return accum + el
|
||||
, "")
|
||||
var descriptor := NodeDescriptor.new(
|
||||
script_path,
|
||||
|
|
Loading…
Reference in a new issue