From e354594f2d856790f94181889bc015cbbb0364da Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Tue, 14 Jul 2020 20:11:42 -0400 Subject: [PATCH] Fixes being able to hide your codex while gathering research points (#52206) --- code/modules/antagonists/eldritch_cult/eldritch_book.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_book.dm b/code/modules/antagonists/eldritch_cult/eldritch_book.dm index 267678c96ba..833d33dde4e 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_book.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_book.dm @@ -40,7 +40,7 @@ /obj/item/forbidden_book/proc/get_power_from_influence(atom/target, mob/user) var/obj/effect/reality_smash/RS = target to_chat(target, "You start drawing power from influence...") - if(do_after(user,10 SECONDS,FALSE,RS)) + if(do_after(user,10 SECONDS,TRUE,RS)) qdel(RS) charge += 1