--- F:/World of Warcraft/Interface/AddOns/Test/Libs/LibBabble-Test-3.0/LibBabble-3.0_org.lua Sun Oct 07 22:40:24 2012 +++ F:/World of Warcraft/Interface/AddOns/Test/Libs/LibBabble-Test-3.0/LibBabble-3.0.lua Sun Oct 07 23:45:12 2012 @@ -27,10 +27,12 @@ local lookup_mt = { __index = function(self, key) local db = tablesToDB[self] - local current_key = db.current[key] - if current_key then - self[key] = current_key - return current_key + if db.current then + local current_key = db.current[key] + if current_key then + self[key] = current_key + return current_key + end end local base_key = db.base[key] local real_MAJOR_VERSION