[MIRROR] some fixes (#9265)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
Co-authored-by: CHOMPStation2 <chompsation2@gmail.com>
This commit is contained in:
CHOMPStation2
2024-10-20 14:21:04 +02:00
committed by GitHub
co-authored by Kashargul CHOMPStation2
parent 433ddfe2ab
commit 3fa21dbdab
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]."))