Mercurial > wow > ouroloot
comparison 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 |
comparison
equal
deleted
inserted
replaced
16:5ee4edd24c13 | 17:d929c40cdb09 |
---|---|
65 | 65 |
66 -- attendance: maybe put people in groups 6,7,8 into a "backup/standby" | 66 -- attendance: maybe put people in groups 6,7,8 into a "backup/standby" |
67 -- list? probably too specific to guild practices. | 67 -- list? probably too specific to guild practices. |
68 local raiders = {} | 68 local raiders = {} |
69 for i = 1, GetNumRaidMembers() do | 69 for i = 1, GetNumRaidMembers() do |
70 tinsert(raiders, (GetRaidRosterInfo(i))) | 70 local name = GetRaidRosterInfo(i) |
71 if name then | |
72 tinsert (raiders, name) | |
73 end | |
71 end | 74 end |
72 table.sort(raiders) | 75 table.sort(raiders) |
73 | 76 |
74 return addon_do_boss (self, reason, name, it, duration, raiders) | 77 return addon_do_boss (self, reason, name, it, duration, raiders) |
75 end | 78 end |