View Single Post
01-24-14, 11:01 PM   #2
Vrul
A Scalebane Royal Guard
 
Vrul's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2007
Posts: 404
You are making it way more complicated than it needs to be, however your error is a simple fix:
Code:
self._index = self
should be:
Code:
self.__index = self
  Reply With Quote