Add playing sound files (that don't yet exist)

This commit is contained in:
2025-01-09 13:53:56 +01:00
parent c0a6a3c082
commit b2925285a2

View File

@@ -92,6 +92,9 @@ function shared.MinimapTagger.Init()
end end
return return
end end
if Heimdall_Data.config.minimapTagger.alertSound then
PlaySoundFile("Interface\\AddOns\\Heimdall\\Sound\\Alert.mp3")
end
PlantFrame(x, y, frame, scale, Heimdall_Data.config.minimapTagger.alertTTL) PlantFrame(x, y, frame, scale, Heimdall_Data.config.minimapTagger.alertTTL)
end end
@@ -124,6 +127,9 @@ function shared.MinimapTagger.Init()
end end
return return
end end
if Heimdall_Data.config.minimapTagger.tagSound then
PlaySoundFile("Interface\\AddOns\\Heimdall\\Sound\\Tag.mp3")
end
PlantFrame(x, y, frame, scale, Heimdall_Data.config.minimapTagger.tagTTL) PlantFrame(x, y, frame, scale, Heimdall_Data.config.minimapTagger.tagTTL)
end end
@@ -156,6 +162,9 @@ function shared.MinimapTagger.Init()
end end
return return
end end
if Heimdall_Data.config.minimapTagger.combatSound then
PlaySoundFile("Interface\\AddOns\\Heimdall\\Sound\\Fight.mp3")
end
PlantFrame(x, y, frame, scale, Heimdall_Data.config.minimapTagger.combatTTL) PlantFrame(x, y, frame, scale, Heimdall_Data.config.minimapTagger.combatTTL)
end end