we need to check that we have a valid item before we try and match it
Description
http://forums.norganna.org/discussion/10950/beancounter-v-564389-error/#Comment_66141
Message: ..\AddOns\BeanCounter\BeanCounterUpdate.lua line 208:
attempt to index local 'item' (a nil value)
Debug:
[C]: ?
BeanCounter\BeanCounterUpdate.lua:208: _2_09()
BeanCounter\BeanCounterUpdate.lua:102: startPlayerUpgrade()
we need to check that we have a valid item before we try and match it
William (Kandoko) added a comment - 10/Aug/09 11:06 PM r4391
Changes
if not item:match("c........;.-") then
to
if item and not item:match("c........;.-") then
Changes
if not item:match("c........;.-") then
to
if item and not item:match("c........;.-") then