# HG changeset patch # User John@Yosemite-PC # Date 1332384694 14400 # Node ID b3679847e2925614bc622c67c5f41e2c87c72293 # Parent 8856fc38cd4142571850ec7079410f38ec5abc38 Kind of useful. I've accidentally gotten a table as the key before. diff -r 8856fc38cd41 -r b3679847e292 Utility.lua --- a/Utility.lua Fri Mar 16 08:56:04 2012 -0400 +++ b/Utility.lua Wed Mar 21 22:51:34 2012 -0400 @@ -47,7 +47,8 @@ elseif( type(v) == "number" ) then print(depth .. i .. " - " .. tostring(v)) elseif( type(v) == "table" ) then - print(depth .. i .." - ") + --if v == table then return end + print(depth .. tostring(i) .." - ") PrintTable(v,depth.." ") elseif( type(v) == "boolean" ) then print(depth .. i .. " - " .. tostring(v))