From b6f19b57880321bb40dc7de199c31db16df5a57f Mon Sep 17 00:00:00 2001 From: Astralcircle <142503363+Astralcircle@users.noreply.github.com> Date: Mon, 30 Mar 2026 22:04:09 +0300 Subject: [PATCH] Fix my typo Accidentally broke EmitSound --- lua/entities/gmod_wire_expression2/core/sound.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/entities/gmod_wire_expression2/core/sound.lua b/lua/entities/gmod_wire_expression2/core/sound.lua index 2f0345e8ac..8b1b24f6d2 100644 --- a/lua/entities/gmod_wire_expression2/core/sound.lua +++ b/lua/entities/gmod_wire_expression2/core/sound.lua @@ -309,7 +309,7 @@ local function EmitSound(e2, ent, path, level, pitch, volume) path = WireLib.SoundExists(path) if not path then return end - ent:EmitSound(snd, level, pitch, volume) + ent:EmitSound(path, level, pitch, volume) end __e2setcost(20)