More improvements in walk

This commit is contained in:
Eduardo Bart
2013-01-26 20:12:00 -02:00
parent 4b1db2bcd6
commit 4351f3c63f
4 changed files with 63 additions and 63 deletions

View File

@@ -76,9 +76,10 @@ function table.removevalue(t, value)
for k,v in pairs(t) do
if v == value then
table.remove(t, k)
break
return true
end
end
return false
end
function table.popvalue(value)