View Single Post
11-19-12, 08:48 AM   #4
Nimhfree
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 267
If you are letting people add mounts to categories, make sure the category does not already exist before you set the mounts[category] to the empty array. Something like:

if nil == mounts[category] then mounts[category] = {} end
mounts[category][mount] = true
  Reply With Quote