View Single Post
06-02-15, 03:21 PM   #2
Cidrei
A Fallenroot Satyr
 
Cidrei's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 21
Assuming you're referring to BadBoy_Levels (going from the level 100 mention), search for "Ambiguate" in BadBoy_Levels.lua and two lines down replace
Code:
if good[trimmedPlayer] or trimmedPlayer:find("%-") or UnitIsInMyGuild(trimmedPlayer) then return end
with
Code:
if good[trimmedPlayer] or UnitIsInMyGuild(trimmedPlayer) then return end

That should allow blocking of cross-realm players as well, though I haven't tested this. There may be a reason cross-realm players are explicitly allowed.
  Reply With Quote