1
0
Fork 0

Fix issue with low level characters.

This commit is contained in:
Andrew Tomaka 2011-12-04 03:14:36 -05:00
parent be3b33f3e4
commit 4cee09a6d4
1 changed files with 4 additions and 2 deletions

View File

@ -155,8 +155,10 @@ function core:OnInitialize()
self.db.global[self.character.realm][self.character.name].lockouts = {}
end
if self.db.global[self.character.realm][self.character.name].lfrs == nil and self.character.level == CURRENT_MAX_LEVEL then
self.db.global[self.character.realm][self.character.name].lfrs = {}
if self.db.global[self.character.realm][self.character.name] ~= nil then
if self.db.global[self.character.realm][self.character.name].lfrs == nil and self.character.level == CURRENT_MAX_LEVEL then
self.db.global[self.character.realm][self.character.name].lfrs = {}
end
end
-- Add LFR stuff to profile if it isn't there already