From 70cc32824b47e142f3b2a4af6f6336b41c00f71d Mon Sep 17 00:00:00 2001 From: AffectedArc07 Date: Thu, 23 Jul 2020 11:33:24 +0100 Subject: [PATCH] Adds book DRM --- code/modules/library/lib_machines.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index 8fa7629863e..67c034e6039 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -150,6 +150,10 @@ GLOBAL_LIST_INIT(library_section_names, list("Any", "Fiction", "Non-Fiction", "A power_change() return if(istype(I, /obj/item/book)) + // NT with those pesky DRM schemes + if(istype(I, /obj/item/book/manual)) + atom_say("NT copyrighted material detected. Scanner is unable to copy book to memory.") + return FALSE user.drop_item() I.forceMove(src) return 1