Try placing the two commented lines outside of the table.
In otherwords, take the
local blah = {
-- blah.
-- blah,
["#"] = "blah",
...
}
and make it look like
-- blah.
-- blah,
local blah = {
["#"] = "blah",
...
}
I'm not even sure the version from the original release post is working anymore.
There's been much discussion and two or three re-writes of the code, all I think within this thread, by different authors
The thread is a mess, but if you find the latest re-write, and convert to the latest way of storing the group tables, you may have better luck.
Look over the last 2-3 pages.