From b21380234616f936431c793008eb15d60c9d9465 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sat, 18 Jun 2022 13:26:29 -0400 Subject: [PATCH] varedit hook no longer no-ops vocal_bark varedits --- code/game/atoms_movable.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index 252eb7b11b..bace332ef2 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -228,8 +228,8 @@ set_glide_size(var_value) . = TRUE if(NAMEOF(src, vocal_bark)) - if(isfile(vocal_bark)) - vocal_bark = sound(vocal_bark) //bark() expects vocal_bark to already be a sound datum, for performance reasons. adminbus QoL! + if(isfile(var_value)) + vocal_bark = sound(var_value) //bark() expects vocal_bark to already be a sound datum, for performance reasons. adminbus QoL! . = TRUE if(!isnull(.))