mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Removes Remove-Sticker verb (#14170)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user