comparison Config.lua @ 11:61b30721d4cf Release

Fixed an error that was not allowing Misc Nodes to be listed in the config panel.
author only1yzerman
date Tue, 25 Jun 2013 22:02:41 -0400
parents 75ca29b399e8
children
comparison
equal deleted inserted replaced
10:8875b9029a32 11:61b30721d4cf
205 end 205 end
206 206
207 function AddMisc() 207 function AddMisc()
208 local table = {}; 208 local table = {};
209 209
210 for h, v in pairs(Bloodhound2.ContinentMisc) do 210 for h, v in pairs(Bloodhound2.ContinentNode) do
211 local name = L[h]; 211 local name = L[h];
212 if not name then name="Misc "..h; end; 212 if not name then name="Misc "..h; end;
213 table[h] = name; 213 table[h] = name;
214 end 214 end
215 215