From e0e3681e7560143a3038dfbb6b574d6db9a7d9f6 Mon Sep 17 00:00:00 2001 From: Spacemanspark Date: Tue, 18 Aug 2015 11:05:20 -0500 Subject: [PATCH] Griffin/ Owl toys actually make Griffin/ Owl noises. --- code/game/objects/items/toys.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index b6bc04227a7..7e8a8e66f9d 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -1057,7 +1057,7 @@ obj/item/toy/cards/deck/syndicate/black /obj/item/toy/minimeteor name = "Mini-Meteor" - desc = "Relive the excitement of a meteor shower! SweetMeat-eor. Co is not responsible for any injuries, headaches or hearing loss caused by Mini-Meteor™" + desc = "Relive the excitement of a meteor shower! SweetMeat-eor. Co is not responsible for any injuries, headaches or hearing loss caused by Mini-Meteor™" icon = 'icons/obj/toy.dmi' icon_state = "minimeteor" w_class = 2.0 @@ -1183,7 +1183,7 @@ obj/item/toy/cards/deck/syndicate/black if(!cooldown) //for the sanity of everyone var/message = pick("You won't get away this time, Griffin!", "Stop right there, criminal!", "Hoot! Hoot!", "I am the night!") user << "You pull the string on the [src]." - playsound(user, 'sound/machines/click.ogg', 20, 1) + playsound(user, 'sound/misc/hoot.ogg', 50, 1) src.loc.visible_message("\icon[src] [message]") cooldown = 1 spawn(30) cooldown = 0 @@ -1202,7 +1202,7 @@ obj/item/toy/cards/deck/syndicate/black if(!cooldown) //for the sanity of everyone var/message = pick("You can't stop me, Owl!", "My plan is flawless! The vault is mine!", "Caaaawwww!", "You will never catch me!") user << "You pull the string on the [src]." - playsound(user, 'sound/machines/click.ogg', 20, 1) + playsound(user, 'sound/misc/caw.ogg', 50, 1) src.loc.visible_message("\icon[src] [message]") cooldown = 1 spawn(30) cooldown = 0 @@ -1319,4 +1319,4 @@ obj/item/toy/cards/deck/syndicate/black stored_minature = O else user << "You stop feeding \the [O] into \the [src]'s mini-input." - else ..() \ No newline at end of file + else ..()