hahahahaha

This commit is contained in:
silicons
2020-07-11 00:30:56 -07:00
parent 11eab51b5d
commit 8d5d194a26
8 changed files with 224 additions and 2 deletions
+17
View File
@@ -612,6 +612,23 @@ so as to remain in compliance with the most up-to-date laws."
if(L.last_special <= world.time)
return L.resist_buckle()
/obj/screen/alert/shoes/untied
name = "Untied Shoes"
desc = "Your shoes are untied! Click the alert or your shoes to tie them."
icon_state = "shoealert"
/obj/screen/alert/shoes/knotted
name = "Knotted Shoes"
desc = "Someone tied your shoelaces together! Click the alert or your shoes to undo the knot."
icon_state = "shoealert"
/obj/screen/alert/shoes/Click()
var/mob/living/carbon/C = usr
if(!istype(C) || !C.can_resist() || C != owner || !C.shoes)
return
C.changeNext_move(CLICK_CD_RESIST)
C.shoes.handle_tying(C)
// PRIVATE = only edit, use, or override these if you're editing the system as a whole
// Re-render all alerts - also called in /datum/hud/show_hud() because it's needed there