Mercurial > wow > ouroloot
diff bossmods.lua @ 17:d929c40cdb09
Small boosts, better version display. Do not wedge when receiving initial boss broadcast of a wipe while outside a raid instance.
author | Farmbuyer of US-Kilrogg <farmbuyer@gmail.com> |
---|---|
date | Thu, 25 Aug 2011 08:50:33 +0000 |
parents | df3e27edbd60 |
children | 4f1e71f62776 |
line wrap: on
line diff
--- a/bossmods.lua Thu Aug 25 00:45:31 2011 +0000 +++ b/bossmods.lua Thu Aug 25 08:50:33 2011 +0000 @@ -67,7 +67,10 @@ -- list? probably too specific to guild practices. local raiders = {} for i = 1, GetNumRaidMembers() do - tinsert(raiders, (GetRaidRosterInfo(i))) + local name = GetRaidRosterInfo(i) + if name then + tinsert (raiders, name) + end end table.sort(raiders)