From 52486ba6da4cea7013d7837c1af09a420aaa95e4 Mon Sep 17 00:00:00 2001 From: KoboldCommando Date: Fri, 22 Sep 2023 11:12:30 -0400 Subject: [PATCH] labeller can be used on living creatures --- code/modules/paperwork/handlabeler.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/paperwork/handlabeler.dm b/code/modules/paperwork/handlabeler.dm index 45bd1a264382..e6eb26bc9240 100644 --- a/code/modules/paperwork/handlabeler.dm +++ b/code/modules/paperwork/handlabeler.dm @@ -1,6 +1,6 @@ /obj/item/hand_labeler name = "hand labeler" - desc = "A combined label printer, applicator, and remover, all in a single portable device. Designed to be easy to operate and use." + desc = "A combined label printer, applicator, and remover, all in a single portable device. Designed to be easy to operate and use.\nUse while powered off to remove existing labels." icon = 'icons/obj/bureaucracy.dmi' icon_state = "labeler0" inhand_icon_state = null @@ -55,9 +55,6 @@ if(length(A.name) + length(label) > 64) to_chat(user, span_warning("Label too big!")) return - if(ismob(A)) - to_chat(user, span_warning("You can't label creatures!")) // use a collar - return user.visible_message(span_notice("[user] labels [A] with \"[label]\"."), \ span_notice("You label [A] with \"[label]\"."))