From 3d4c9bc4fe7e8ef89638b695b72426193b1bf0cb Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 5 Nov 2021 21:18:52 +0000 Subject: [PATCH] [MIRROR] Removes an erroneous to_chat(world) call [MDB IGNORE] (#9258) * Removes an erroneous to_chat(world) call (#62556) * why? * Update code/game/objects/items/plushes.dm Replace return with CRASH Co-authored-by: tralezab <40974010+tralezab@ users.noreply.github.com> Co-authored-by: tralezab <40974010+tralezab@ users.noreply.github.com> * Removes an erroneous to_chat(world) call Co-authored-by: msgerbs Co-authored-by: tralezab <40974010+tralezab@ users.noreply.github.com> --- code/game/objects/items/plushes.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index b9c4117d563..358ac827844 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -236,8 +236,7 @@ /obj/item/toy/plush/proc/heartbreak(obj/item/toy/plush/Brutus) if(lover != Brutus) - to_chat(world, "lover != Brutus") - return //why are we considering someone we don't love? + CRASH("plushie heartbroken by a plushie that is not their lover") scorned.Add(Brutus) Brutus.scorned_by(src)