mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-26 01:22:03 +00:00
* Mobility refactor: no more update_mobility() * Update robot.dm Fixes robots. * megadumb * Update robot.dm * weh * Update gunpoint_datum.dm Co-authored-by: Rohesie <rohesie@gmail.com> Co-authored-by: Gandalf <jzo123@hotmail.com> Co-authored-by: Azarak <azarak10@gmail.com>
33 lines
948 B
Plaintext
33 lines
948 B
Plaintext
/datum/element/cleaning/Attach(datum/target)
|
|
. = ..()
|
|
if(!ismovable(target))
|
|
return ELEMENT_INCOMPATIBLE
|
|
RegisterSignal(target, COMSIG_MOVABLE_MOVED, .proc/Clean)
|
|
|
|
/datum/element/cleaning/Detach(datum/target)
|
|
. = ..()
|
|
UnregisterSignal(target, COMSIG_MOVABLE_MOVED)
|
|
|
|
/datum/element/cleaning/proc/Clean(datum/source)
|
|
SIGNAL_HANDLER
|
|
|
|
var/atom/movable/AM = source
|
|
var/turf/tile = AM.loc
|
|
if(!isturf(tile))
|
|
return
|
|
|
|
tile.wash(CLEAN_SCRUB)
|
|
for(var/A in tile)
|
|
// Clean small items that are lying on the ground
|
|
if(isitem(A))
|
|
var/obj/item/I = A
|
|
if(I.w_class <= WEIGHT_CLASS_SMALL && !ismob(I.loc))
|
|
I.wash(CLEAN_SCRUB)
|
|
// Clean humans that are lying down
|
|
else if(ishuman(A))
|
|
var/mob/living/carbon/human/cleaned_human = A
|
|
if(cleaned_human.body_position == LYING_DOWN)
|
|
cleaned_human.wash(CLEAN_SCRUB)
|
|
cleaned_human.regenerate_icons()
|
|
to_chat(cleaned_human, "<span class='danger'>[AM] cleans your face!</span>")
|