mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 17:45:02 +01:00
Fix multitool arrow hard delete (#91114)
This commit is contained in:
@@ -105,7 +105,7 @@
|
||||
user_hud.infodisplay += arrow
|
||||
user_hud.show_hud(user_hud.hud_version)
|
||||
|
||||
addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), arrow), 1.5 SECONDS)
|
||||
QDEL_IN(arrow, 1.5 SECONDS)
|
||||
|
||||
/obj/item/multitool/suicide_act(mob/living/carbon/user)
|
||||
user.visible_message(span_suicide("[user] puts the [src] to [user.p_their()] chest. It looks like [user.p_theyre()] trying to pulse [user.p_their()] heart off!"))
|
||||
|
||||
@@ -3,3 +3,9 @@
|
||||
icon_state = "multitool_arrow"
|
||||
pixel_x = -32
|
||||
pixel_y = -32
|
||||
|
||||
/atom/movable/screen/multitool_arrow/Destroy()
|
||||
if(hud)
|
||||
hud.infodisplay -= src
|
||||
INVOKE_ASYNC(hud, TYPE_PROC_REF(/datum/hud, show_hud), hud.hud_version)
|
||||
return ..()
|
||||
|
||||
Reference in New Issue
Block a user