# HG changeset patch # User only1yzerman # Date 1372212161 14400 # Node ID 61b30721d4cfff5e08dbe2e98d20c49b567b197c # Parent 8875b9029a32fd65b7bb268f1c0066670bf35e42 Fixed an error that was not allowing Misc Nodes to be listed in the config panel. diff -r 8875b9029a32 -r 61b30721d4cf Config.lua --- a/Config.lua Mon Jun 24 07:48:29 2013 -0400 +++ b/Config.lua Tue Jun 25 22:02:41 2013 -0400 @@ -207,7 +207,7 @@ function AddMisc() local table = {}; - for h, v in pairs(Bloodhound2.ContinentMisc) do + for h, v in pairs(Bloodhound2.ContinentNode) do local name = L[h]; if not name then name="Misc "..h; end; table[h] = name;