File Details
V5.0.x testing
- R
- Sep 19, 2012
- 81.14 KB
- 11
- 5.0.5
- Retail
File Name
LDB_Guild.zip
Supported Versions
- 5.0.5
from majikthise:
you can just change this line
local function inGroup(name)
if ((GetNumRaidMembers() <= 0) or (GetNumPartyMembers() <= 0) or (name==nil)) then
return false
To
local function inGroup(name)
if ((GetNumGroupMembers() <= 0) or (name==nil)) then
return false
There is no need to check for GetNumGroupMembers() <= 0) twice in the same line as they have been pulled to one call.