From 6446889615f4e165ac131a869b540800a7f3132c Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Mon, 16 Mar 2026 16:08:16 +0000 Subject: Remove "sound is missing" warning If there's no sound section in the INI, that means no sounds are intended for the character, no need to warn us for that. --- webAO/packets/handlers/handlePV.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/webAO/packets/handlers/handlePV.ts b/webAO/packets/handlers/handlePV.ts index 17e9fc1..ba48f36 100644 --- a/webAO/packets/handlers/handlePV.ts +++ b/webAO/packets/handlers/handlePV.ts @@ -63,7 +63,6 @@ export const handlePV = async (args: string[]) => { esfx = ini.soundn?.[i] || "0"; esfxd = ini.soundt?.[i] ? Number(ini.soundt[i]) : 0; } catch (e) { - console.warn(`ini sound is completly missing: ${e}`); esfx = "0"; esfxd = 0; } -- cgit