some fixes (#16494)

* some fixes

* module deselect

* .

* .

* .

* .
This commit is contained in:
Kashargul
2024-10-20 12:10:52 +02:00
committed by GitHub
parent 7be625e0cb
commit 40f956a414
7 changed files with 27 additions and 9 deletions
+15 -2
View File
@@ -559,9 +559,22 @@
return
busy = 0
user.clean_blood()
if(ishuman(user))
user:update_inv_gloves()
var/mob/living/carbon/human/H = user
H.gunshot_residue = null
if(H.gloves)
H.gloves.clean_blood()
H.update_inv_gloves()
H.gloves.germ_level = 0
else
if(H.r_hand)
H.r_hand.clean_blood()
if(H.l_hand)
H.l_hand.clean_blood()
H.bloody_hands = 0
H.germ_level = 0
else
user.clean_blood()
for(var/mob/V in viewers(src, null))
V.show_message(span_notice("[user] washes their hands using \the [src]."))