mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
13 lines
349 B
Plaintext
13 lines
349 B
Plaintext
/client/proc/mark_datum(datum/D)
|
|
if(!holder)
|
|
return
|
|
if(holder.marked_datum)
|
|
vv_update_display(holder.marked_datum, "marked", "")
|
|
holder.marked_datum = D
|
|
vv_update_display(D, "marked", VV_MSG_MARKED)
|
|
|
|
/client/proc/mark_datum_mapview(datum/D as mob|obj|turf|area in view(view))
|
|
set category = "Debug"
|
|
set name = "Mark Object"
|
|
mark_datum(D)
|