Hi, I have a little function in my addon to leave an instance/group with a click on a button. LeaveParty() is different in retail and in wrath… How do I have to change the code to function properly?
function Leave_OnClick()
DoEmote("Bye")
interface_version = select(4, GetBuildInfo())
If interface_version = 100200 then
C_PartyInfo.LeaveParty()
else
LeaveParty()
end
end
Thx,
Feli