From 7d73ac19f5b13fa95a7d0f06cf506e6fb762cc18 Mon Sep 17 00:00:00 2001 From: littlefoot Date: Sun, 7 Nov 2021 00:56:13 -0400 Subject: [PATCH] removing debug messages --- scripts/vscripts/system/tower.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/vscripts/system/tower.lua b/scripts/vscripts/system/tower.lua index 299dc35..2d78c9e 100755 --- a/scripts/vscripts/system/tower.lua +++ b/scripts/vscripts/system/tower.lua @@ -161,23 +161,18 @@ function THTD_GetCombo(tower) for k,v in pairs(value) do if THTD_IsTowerInList(tower:GetOwner(),v) == true then - print(v) count = count + 1 end if tower:GetUnitName() == v then - print(v) isInCombo = true end end - print("Count " .. count) - print("#value " .. #value) if count == #value and isInCombo == true then comboTable[index] = value end end if comboTable ~= nil then - print(comboTable) return comboTable end return nil