diff options
Diffstat (limited to 'src/pawsd/record.lua')
| -rw-r--r-- | src/pawsd/record.lua | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/pawsd/record.lua b/src/pawsd/record.lua index ae6d145..869796f 100644 --- a/src/pawsd/record.lua +++ b/src/pawsd/record.lua @@ -20,18 +20,14 @@ function getrecord(response, offset) local tagcount = getrecordtagnumber(response, offset) - print("R>------ Number Of Tags: " .. tagcount) - local tagoffset = offset + 2 local tags = {} for tagindex = 1, tagcount, 1 do - print("\nT>------ Getting Tag " .. tagindex .. "...") - local tag = pawsd.tag.get(response, tagoffset) - tags[tagindex] = tag.value + tags[tagindex] = tag.tag tagoffset = tag.endoffset end |
