Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Labeler can now be used on living creatures, updated description #381

Merged
merged 1 commit into from
Oct 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions code/modules/paperwork/handlabeler.dm
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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]\"."))
Expand Down
Loading