From cf2ffee18b1fc50347b3ecb99791c9418a655eee Mon Sep 17 00:00:00 2001 From: Cydia Date: Sun, 2 Aug 2020 04:53:02 -0500 Subject: [PATCH] Update cit_emotes.dm --- modular_citadel/code/modules/mob/cit_emotes.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/mob/cit_emotes.dm b/modular_citadel/code/modules/mob/cit_emotes.dm index 8db66bd2..b2d9f5b8 100644 --- a/modular_citadel/code/modules/mob/cit_emotes.dm +++ b/modular_citadel/code/modules/mob/cit_emotes.dm @@ -253,4 +253,5 @@ if(user.nextsoundemote >= world.time) return user.nextsoundemote = world.time + 7 - playsound(user, 'modular_citadel/sound/voice/bark.ogg', 50, 1, -1) + var/path = pick(list('modular_citadel/sound/voice/bark.ogg', 'modular_citadel/sound/voice/bark1.ogg', 'modular_citadel/sound/voice/bark2.ogg')) + playsound(user, path, 50, 1, -1) \ No newline at end of file