NUI directory organisation

This commit is contained in:
Dan
2019-12-18 22:12:25 +00:00
parent 84e721c57f
commit 642c401549
21 changed files with 9 additions and 9 deletions

View File

@@ -302,7 +302,7 @@ function settingUpdate( ants )
function playAudio( name, vol )
{
let audio = new Audio( audioNames[name] );
let audio = new Audio( "sounds/" + audioNames[name] );
audio.volume = vol;
audio.play();
}