Quote Originally Posted by Jafula View Post
Hmmm, another addon must be loading the sounds for me. I'll investigate and see if I can work out how to get the sounds loaded!
>> Borrows Jafula's DeerStalker and Pipe, hoping for some inspiration.

I used Windows Grep and looked for references to DoubleSwoosh .. I found it in only 1 AddOn .. Range Display

When I looked at this file I also found reference to .. Goblet F Medium & SwordUnsheathed.

RangeDisplay.lua

00070: ["DoubleSwoosh"] = [[Interface\AddOns\]] .. AppName .. [[\sounds\19312.ogg]],
00077: ["srSection"] = "DoubleSwoosh",
00078: ["mrSection"] = "DoubleSwoosh",
00079: ["lrSection"] = "DoubleSwoosh",
00080: ["defaultSection"] = "DoubleSwoosh",

-- all sounds are slightly edited samples from freesound.org
local Sounds = {
["DoubleSwoosh"] = [[Interface\AddOns\]] .. AppName .. [[\sounds\19312.ogg]],
["Goblet F Medium"] = [[Interface\AddOns\]] .. AppName .. [[\sounds\30600.ogg]],
["SwordUnsheathed"] = [[Interface\AddOns\]] .. AppName .. [[\sounds\74833.ogg]],
}

local DefaultSoundNames = {
["crSection"] = "SwordUnsheathed",
["srSection"] = "DoubleSwoosh",
["mrSection"] = "DoubleSwoosh",
["lrSection"] = "DoubleSwoosh",
["defaultSection"] = "DoubleSwoosh",
["oorSection"] = "Goblet F Medium",
}

As a test, I removed the Range Display AddOn from my folder.

Loaded WoW and examined Jamba

I can now see only 1 option ..

Under Core: Message Display .. Sound To Play .. None (ticked)

I hope this can help with your investigating.

>> passes the DeerStalker and Pipe back to Jafula