This commit is contained in:
Cedric Hoelzl 2019-12-25 15:55:22 +01:00
parent 775e4c1c5a
commit 941715b26d

View File

@ -43,7 +43,7 @@ module.exports = function(cmds){
action : (bot,event,message)=>{
const ss = message.text.replace('/','');
if(sound_list[ss] != undefined){
return event.replyWithAudio('./sounds/'+ sound_list[ss].file);
return event.replyWithAudio({source:'./sounds/'+ sound_list[ss].file, title:"OOF", Performer:"Roblox"});
}else{
return event.reply("Unknown Sound !");
}