7 lines
199 B
Lua
7 lines
199 B
Lua
-- PLAY_SOUND
|
|
function(e, file)
|
|
local success = PlaySoundFile(file, "Master")
|
|
if not success then
|
|
if aura_env.debug then print(string.format("Failed to play sound file at %s", file)) end
|
|
end
|
|
end |