8.2패치후 완료가 안되서 덤으로 다른 퀘스트갱신까지 안되는 버그가 있는데, 구글링해보니 해결책이 있군요.(출처 : https://www.wowace.com/projects/sorhaquestlog)

애드온 폴더에 SorhaQuestlog 폴더들어가서 core.lua 열면 27번째 줄부터 아래사항이 있음.

-- Register framd font
LSM:Register("font", "framd", [[InterfaceAddOnsSorhaQuestLogFontsframd.ttf]])
LSM:Register("sound", "Peon Ready", [[SoundCreaturePeonPeonReady1.ogg]])
LSM:Register("sound", "More work?", [[SoundCreaturePeasantPeasantWhat3.ogg]])
LSM:Register("sound", "Work complete!", [[SoundCreaturePeonPeonBuildingComplete1.ogg]])
LSM:Register("sound", "Quest Added", [[SoundInterfaceiQuestActivate.ogg]])
LSM:Register("sound", "Quest Completed", [[SoundInterfaceiQuestComplete.ogg]])
LSM:Register("sound", "Quest Failed", [[SoundInterfaceigQuestFailed.ogg]])

 

위에 원본 내용을 아래 수정된 텍스트 복사해서 붙여넣기로 덮어씌우세요.

 

-- Register framd font
LSM:Register("font", "framd", [[InterfaceAddOnsSorhaQuestLogFontsframd.ttf]])
LSM:Register("sound", "Peon Ready", 558137, [[SoundCreaturePeonPeonReady1.ogg]])
LSM:Register("sound", "More work?", 558143, [[SoundCreaturePeasantPeasantWhat3.ogg]])
LSM:Register("sound", "Work complete!", 558132, [[SoundCreaturePeonPeonBuildingComplete1.ogg]])
LSM:Register("sound", "Quest Added", 567400, [[SoundInterfaceiQuestActivate.ogg]])
LSM:Register("sound", "Quest Completed", 567439, [[SoundInterfaceiQuestComplete.ogg]])
LSM:Register("sound", "Quest Failed", 567459, [[SoundInterfaceigQuestFailed.ogg]])