View Single Post
03-27-13, 08:13 AM   #3
Rainrider
A Firelord
AddOn Author - Click to view addons
Join Date: Nov 2008
Posts: 454
Thanks for the reply Phanx. Upvaluing Visibility solved it. The other way was using
Code:
local function Visibility(self)
instead of
Code:
local Visibility = function(self)
I thought the first one is just syntactic sugar for the second, but apparently it's not just that. Could someone please explain that?
  Reply With Quote