From b9acddde68feeb92c113e926be89c7c0d4e70340 Mon Sep 17 00:00:00 2001 From: littlefoot Date: Fri, 29 Oct 2021 17:18:27 -0400 Subject: [PATCH] debug --- scripts/vscripts/system/tower.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/vscripts/system/tower.lua b/scripts/vscripts/system/tower.lua index dd0582d..6f5916f 100755 --- a/scripts/vscripts/system/tower.lua +++ b/scripts/vscripts/system/tower.lua @@ -1322,13 +1322,18 @@ function THTD_GetCombo(tower) isInCombo = true end end + if count > 0 then + print("Count " .. count) + print("#value " .. #value) + print("isincombo " .. isInCombo) + end if count == #value and isInCombo == true then comboTable[index] = value end end if comboTable ~= nil then - print(table.tostring(comboTable)) + print(comboTable) return comboTable end return nil