removing debug messages

This commit is contained in:
2021-11-07 00:56:13 -04:00
parent 73683bd853
commit 7d73ac19f5

View File

@@ -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