View Single Post
11-05-12, 05:00 PM   #3
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
Originally Posted by Dridzt View Post
Code:
function()
  return not IsInRaid() and true
end
The and-operator here is redundant. You're comparing either 'false and true' or 'true and true'. Just 'not InInRaid()' should do.
  Reply With Quote