View Single Post
02-24-15, 05:02 PM   #6
Banknorris
A Chromatic Dragonspawn
 
Banknorris's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 153
MindHarvest is the name of a variable
Did you define its value anywhere? Probably no, so you defining ADDON_NAME as nil then trying to Disable an addon named nil. Just use the proposed code:
local ADDON_NAME = ...
or at least
local ADDON_NAME = "MindHarvest"

Last edited by Banknorris : 02-24-15 at 06:05 PM.
  Reply With Quote