From 07fcd76fe6e4667d42e3a31129656a60a8a5fda8 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 4 Nov 2021 10:59:05 +0000 Subject: [PATCH] [MIRROR] Blind mobs can now smell what the oven is cooking. Plus punctuation. [MDB IGNORE] (#9232) * Blind can now smell what the Oven is cooking. Plus punctuation. (#62538) * Blind mobs can now smell what the oven is cooking. Plus punctuation. Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/datums/components/bakeable.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/components/bakeable.dm b/code/datums/components/bakeable.dm index 5e3d12d7382..71e15e7a938 100644 --- a/code/datums/components/bakeable.dm +++ b/code/datums/components/bakeable.dm @@ -68,9 +68,9 @@ used_tray.AddToPlate(baked_result) if(positive_result) - used_oven.visible_message(span_warning("You smell something great coming from [used_oven]")) + used_oven.visible_message(span_notice("You smell something great coming from [used_oven]."), blind_message = span_notice("You smell something great...")) else - used_oven.visible_message(span_warning("You smell a burnt smell coming from [used_oven]")) + used_oven.visible_message(span_warning("You smell a burnt smell coming from [used_oven]."), blind_message = span_warning("You smell a burnt smell...")) SEND_SIGNAL(parent, COMSIG_BAKE_COMPLETED, baked_result) qdel(parent)