Fix build error caused by line 114

Effectively make it ignore the nonexistent problem? idk
This commit is contained in:
spy 2024-07-30 16:43:37 -04:00
parent 6eec4e6829
commit 4c291ac25a

View file

@ -111,7 +111,7 @@ main();
function audioStream() { function audioStream() {
if (!audioprc) return; if (!audioprc) return;
stream = new MemoryStream(); stream = new MemoryStream();
audioprc.stdout.pipe(stream); audioprc.stdout.pipe(stream as unknown as NodeJS.WritableStream);
player.play(createAudioResource(stream, { player.play(createAudioResource(stream, {
inputType: StreamType.Raw, inputType: StreamType.Raw,
inlineVolume: false inlineVolume: false