Removes Remove-Sticker verb (#14170)

This commit is contained in:
Doxxmedearly
2022-06-06 08:12:45 +02:00
committed by GitHub
parent e90e6a635b
commit be05bdeea4
2 changed files with 4 additions and 12 deletions
-12
View File
@@ -63,7 +63,6 @@
user.drop_from_inventory(src, A)
attached = WEAKREF(A)
A.vis_contents += src
A.verbs += /atom/movable/proc/take_off_sticker
/obj/item/sticker/proc/remove_sticker(var/mob/user)
user.put_in_hands(src)
@@ -71,7 +70,6 @@
if(attached_atom)
to_chat(user, SPAN_NOTICE("You remove \the [src] from \the [attached_atom]."))
attached_atom.vis_contents -= src
attached_atom.verbs -= /atom/movable/proc/take_off_sticker
attached = null
/obj/item/sticker/googly_eye
@@ -83,13 +81,3 @@
name = "gold star"
desc = "A sticker of a gold star, for those overachievers."
icon_state = "goldstar"
/atom/movable/proc/take_off_sticker()
set name = "Remove Sticker"
set src in view(1)
if(!isliving(usr))
return
var/obj/item/sticker/S = locate() in src
if(S)
S.remove_sticker(usr)