1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-02-20 12:33:14 +00:00

Fix wrong variable name in ExtensionsAPI

This commit is contained in:
Emmanouil Papadeas 2023-01-10 21:10:05 +02:00
parent e1facda618
commit 01fc5cd9bd

View file

@ -57,7 +57,7 @@ func _get_caller_extension_name() -> String:
var arr: Array = trace["source"].split("/")
var idx = arr.find("Extensions")
if idx != -1:
return _arr[idx + 1]
return arr[idx + 1]
return "Unknown"