From 0b342668972ffa1f37d81ccb2700827f63c26f9b Mon Sep 17 00:00:00 2001 From: dscarpac Date: Tue, 11 Jun 2024 11:31:01 -0500 Subject: [PATCH] bug fix --- src/core/PlayAreaApi.ttslua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/PlayAreaApi.ttslua b/src/core/PlayAreaApi.ttslua index 651b553a..72096f1d 100644 --- a/src/core/PlayAreaApi.ttslua +++ b/src/core/PlayAreaApi.ttslua @@ -105,7 +105,7 @@ do -- Returns a deep copy of the currently tracked locations PlayAreaApi.getTrackedLocations = function() local t = {} - for k, v in pairs(getPlayArea().call("getTrackedLocations")) do + for k, v in pairs(getPlayArea().call("getTrackedLocations", {})) do t[k] = v end return t