[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 <msgerbs@users.noreply.github.com>
Co-authored-by: tralezab <40974010+tralezab@ users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-11-05 17:18:52 -04:00
committed by GitHub
co-authored by tralezab msgerbs
parent c0b9c66f69
commit 3d4c9bc4fe
+1 -2
View File
@@ -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)