forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/fart.js

10 lines
217 B
JavaScript
Raw Normal View History

fart = Math.floor(Math.random() * 5) + 1
2023-07-27 22:58:25 +00:00
let audio = new Audio(`/i/${fart}.webp`);
audio.play();
if (audio.paused) {
document.addEventListener('click', () => {
2023-01-01 11:36:20 +00:00
if (audio.paused) audio.play();
}, {once : true})
}