View Single Post
12-31-18, 11:17 PM   #3
mtp1032
A Fallenroot Satyr
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 22
Well, thanks as always, Fizzlemizz but I'm not sure I understood your suggestion. For example, I rewrote the method and changed its name from this (the original):
Code:
function Slot:is_a()
    return self.is_a
end
to this (note the changed name):
Code:
function Slot:type()
    return self.is_a
end
and I still get the same error, i.e., interpreting 'type' as a string.

So, after all this, did I misunderstand your suggestion?

Cheers,

Last edited by mtp1032 : 01-01-19 at 07:21 AM. Reason: Clarification and misspelling
  Reply With Quote