Add print

This commit is contained in:
Andrew Ward 2013-11-07 09:05:24 +00:00
parent b555a59801
commit 9117031f2a
1 changed files with 4 additions and 1 deletions

View File

@ -40,7 +40,10 @@ function awards.tbv(tb,value,default)
default = {}
end
if not tb or type(tb) ~= "table" then
print("Table is null, or not a table!")
if not value then
value = "[NULL]"
end
print("Table '"..value.."' is null, or not a table!")
return
end
if not tb[value] then