mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 20:43:10 +01:00
Fixes Googly eyes being able to be unattached by dead people (#14029)
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
icon_state = pick(rand_icons)
|
||||
|
||||
/obj/item/sticker/attack_hand(mob/user)
|
||||
if(!attached)
|
||||
if(!isliving(user) || !attached)
|
||||
return ..()
|
||||
|
||||
if(user.a_intent == I_HELP)
|
||||
@@ -88,6 +88,8 @@
|
||||
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