From e028edc83672190cf616bb45ab395dedff0170a4 Mon Sep 17 00:00:00 2001 From: Mickyan <38563876+Mickyan@users.noreply.github.com> Date: Sat, 7 Sep 2019 05:21:04 +0200 Subject: [PATCH] Bombproof photo album contents (#46359) Makes album contents not be damaged by being at the epicenter of an explosion. It's annoying for persistent albums and I don't see the harm in it since it's fluff content. --- code/modules/photography/photos/album.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/photography/photos/album.dm b/code/modules/photography/photos/album.dm index afd3aa9ede9..173d900c4b5 100644 --- a/code/modules/photography/photos/album.dm +++ b/code/modules/photography/photos/album.dm @@ -55,6 +55,9 @@ if(!SEND_SIGNAL(src, COMSIG_TRY_STORAGE_INSERT, P, null, TRUE, TRUE)) qdel(P) +/obj/item/storage/photo_album/prevent_content_explosion() + return TRUE + /obj/item/storage/photo_album/HoS name = "photo album (Head of Security)" persistence_id = "HoS"