From e0015b69baba8b5aa2bf17e5b13a3068871d8793 Mon Sep 17 00:00:00 2001 From: Dovixx Date: Tue, 30 Apr 2019 22:45:00 +0300 Subject: [PATCH] Proper fix (And yes i did forget about this PR) --- code/modules/paperwork/photography.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm index 4a57c1b2636..de3f2ad52d6 100644 --- a/code/modules/paperwork/photography.dm +++ b/code/modules/paperwork/photography.dm @@ -325,9 +325,10 @@ var/list/SpookyGhosts = list("ghost","shade","shade2","ghost-narsie","horror","s to_chat(user, "[pictures_left] photos left.") icon_state = icon_off on = 0 - if(user.mind && user.mind.assigned_role == "Chaplain") - if(prob(24)) - handle_haunt(user) + if(istype(src,/obj/item/camera/spooky)) + if(user.mind && user.mind.assigned_role == "Chaplain" && see_ghosts) + if(prob(24)) + handle_haunt(user) spawn(64) icon_state = icon_on on = 1