Point Refactor (#8718)

This commit is contained in:
Guti
2024-08-02 00:43:05 +02:00
committed by GitHub
parent c9606a7fe5
commit fd715eb60d
9 changed files with 127 additions and 8 deletions
@@ -807,11 +807,20 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
W.add_hiddenprint(src)
W.visible_message("<span class='filter_notice'>[span_red("Invisible fingers crudely paint something in blood on [T]...")]</span>")
// CHOMPEdit Start - Point Refactor
/*
/mob/observer/dead/pointed(atom/A as mob|obj|turf in view())
if(!..())
return 0
usr.visible_message("<span class='deadsay'><b>[src]</b> points to [A].</span>")
return 1
*/
/mob/observer/dead/_pointed(atom/pointed_at)
if(!..())
return FALSE
visible_message(span_deadsay("<b>[src]</b> points to [pointed_at]."))
/mob/observer/dead/proc/manifest(mob/user)
is_manifest = TRUE