From 49f4ca0d178c80b5d01a95709139fa3233d60d89 Mon Sep 17 00:00:00 2001 From: WanderingFox95 <75953558+WanderingFox95@users.noreply.github.com> Date: Mon, 21 Jun 2021 16:24:59 +0200 Subject: [PATCH] Added an announcement. Not sure on the exact tone of it, but this will do for now. --- code/modules/events/cat_surgeon.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/events/cat_surgeon.dm b/code/modules/events/cat_surgeon.dm index d968e5e1f8..ebcd55d8aa 100644 --- a/code/modules/events/cat_surgeon.dm +++ b/code/modules/events/cat_surgeon.dm @@ -2,8 +2,11 @@ name = "Cat Surgeon" typepath = /datum/round_event/cat_surgeon max_occurrences = 1 - weight = 10 + weight = 8 +/datum/round_event/cat_surgeon/announce(fake) + priority_announce("One of our... ahem... 'special' cases has escaped. Our sensors now show their tracker implant on your station. On an unrelated note, has anyone seen our cats?", + sender_override = "Nanotrasen Psych Ward") /datum/round_event/cat_surgeon/start() var/list/spawn_locs = list() @@ -16,7 +19,7 @@ var/turf/T = get_turf(pick(spawn_locs)) var/mob/living/simple_animal/hostile/cat_butcherer/S = new(T) - playsound(S, 'sound/misc/catscream.ogg', 50, 1, -1) + playsound(S, 'sound/misc/catscream.ogg', 75, 1, -1) message_admins("A cat surgeon has been spawned at [COORD(T)][ADMIN_JMP(T)]") log_game("A cat surgeon has been spawned at [COORD(T)]") return SUCCESSFUL_SPAWN