christoabrown / vQueue

Group finder for vanilla WoW
33 stars 15 forks source link

Error #11

Closed ziguirifow closed 3 years ago

ziguirifow commented 7 years ago

Error: bad argument #2 to `format' (string expected, got nil) File: Interface\AddOns\vQueue\vQueue.lua Line: 171 Count: 1

feljx commented 6 years ago

Open "vQueue.lua" in your vQueue addon folder. Go to line 171 (open with some kind of editor that shows line numbers).

Replace this

self.hooks[frame].AddMessage(frame, string.format("%s", text), r, g, b, id)

by this

if text then self.hooks[frame].AddMessage(frame, string.format("%s", text), r, g, b, id) end