From 49467a332fd92d4a3edda3d18332eb2076499ecf Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Sun, 12 Apr 2026 18:19:54 -0400 Subject: [PATCH] Stop Sheet Snatcher Spam (#22180) There's like 8 different items in the game that go in a sheet snatcher. If the intended purpose of the Sheet Snatcher is to grab all of the material sheets from a giant pile of random crap in the warehouse, then it spamming the chat is apparently incredibly useless. This PR was requested to me by some warehouse mains. image --- code/game/objects/items/weapons/storage/bags.dm | 2 -- html/changelogs/example copy.yml | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/example copy.yml diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index b5ffe88bb7c..4fa6e489648 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -152,8 +152,6 @@ /obj/item/storage/bag/sheetsnatcher/can_be_inserted(obj/item/W as obj, stop_messages = 0) if(!istype(W,/obj/item/stack/material)) - if(!stop_messages) - to_chat(usr, "The snatcher does not accept [W].") return 0 var/current = 0 for(var/obj/item/stack/material/S in contents) diff --git a/html/changelogs/example copy.yml b/html/changelogs/example copy.yml new file mode 100644 index 00000000000..e6095cb5fb4 --- /dev/null +++ b/html/changelogs/example copy.yml @@ -0,0 +1,4 @@ +author: Hellfirejag +delete-after: True +changes: + - rscdel: "Sheet Snatchers no longer flood your chat with messages."