mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-21 13:03:13 +00:00
Fix wrong variable name in ExtensionsAPI
This commit is contained in:
parent
e1facda618
commit
01fc5cd9bd
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ func _get_caller_extension_name() -> String:
|
||||||
var arr: Array = trace["source"].split("/")
|
var arr: Array = trace["source"].split("/")
|
||||||
var idx = arr.find("Extensions")
|
var idx = arr.find("Extensions")
|
||||||
if idx != -1:
|
if idx != -1:
|
||||||
return _arr[idx + 1]
|
return arr[idx + 1]
|
||||||
return "Unknown"
|
return "Unknown"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue