From a868832007bf91acf7777b54779f5e239032d5df Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 31 Aug 2023 23:27:36 +0200 Subject: [PATCH] [MIRROR] Makes fanny packs be silent, others can't see what you put in or take out. [MDB IGNORE] (#23435) * Makes fanny packs be silent, others can't see what you put in or take out. (#78010) ## About The Pull Request Just like the syndicate toolbox and a handful of other items. ## Why It's Good For The Game This is a blatantly stealth antag buff. Pockets are 2 silent storage slots everyone has, so it is not adding anything that antags didn't have access already. But going from 2 to 5 small items can help a lot, also belts are a lot smoother to use with their shortcut keys. Love stealth antags, hate murderboners, gonna help my stealth boys not be valid hunted because someone checked their chat logs from 10 minutes ago and read that X player put Y contraband in their bag. Or people that have some contraband names highlighted on chat... but no one does that right.... right? ## Changelog :cl:Guillaume Prata balance: Fanny packs are now silent, no one will get a chat message about what you put in or take out. /:cl: --------- Co-authored-by: Aki Ito <11748095+ExcessiveUseOfCobblestone@ users.noreply.github.com> * Makes fanny packs be silent, others can't see what you put in or take out. --------- Co-authored-by: GuillaumePrata <55374212+GuillaumePrata@users.noreply.github.com> Co-authored-by: Aki Ito <11748095+ExcessiveUseOfCobblestone@ users.noreply.github.com> --- code/game/objects/items/storage/belt.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 7994ba42a80..484797ca29c 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -739,7 +739,7 @@ /obj/item/storage/belt/fannypack name = "fannypack" - desc = "A dorky fannypack for keeping small items in." + desc = "A dorky fannypack for keeping small items in. Concealed enough, or ugly enough to avert their eyes, that others won't see what you put in or take out easily." icon_state = "fannypack_leather" inhand_icon_state = null worn_icon_state = "fannypack_leather" @@ -750,6 +750,7 @@ . = ..() atom_storage.max_slots = 3 atom_storage.max_specific_storage = WEIGHT_CLASS_SMALL + atom_storage.silent = TRUE /obj/item/storage/belt/fannypack/black name = "black fannypack"