[WotLK] fix SendChatMessage error in random dungeon Instance
simshi opened this issue ยท 1 comments
Lines 29 to 39 in 4a5ee34
SendChatMessage
by party errors with something like "not in a party", it can be fixed by below code:
elseif IsInGroup(LE_PARTY_CATEGORY_INSTANCE) then
SendChatMessage(msg, "INSTANCE_CHAT")
elseif UnitInParty("player") then
-- send to party members
SendChatMessage(msg, "PARTY")