diff --git a/MyAddon.lua b/MyAddon.lua index e89a48d..d8bf2ed 100755 --- a/MyAddon.lua +++ b/MyAddon.lua @@ -40,7 +40,10 @@ function MyAddon.OnEvent(self, event, ...) end function events:GOSSIP_SHOW() - if GetZoneText() == 'The Necrotic Wake' then MyAddon.activateGoliath() end + local isNecroticWake = GetZoneText() == 'The Necrotic Wake' + local isSteward = GetUnitName('npc') == 'Steward' + + if isNecroticWake and isSteward then MyAddon.activateGoliath() end end function events:CHAT_MSG_PARTY_LEADER(message, ...)