diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 30cd59debc07..705ae6ee6560 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -759,11 +759,11 @@ emp_act return for(var/obj/O in list(head, wear_suit, back, l_hand, r_hand)) - O.water_act(src, volume, temperature, source, method) + O.water_act(volume, temperature, source, method) if((head?.flags & THICKMATERIAL) && (wear_suit?.flags & THICKMATERIAL)) // fully pierce proof clothing is also water proof! return for(var/obj/O in list(w_uniform, shoes, belt, gloves, glasses, l_ear, r_ear, wear_id, wear_pda, r_store, l_store, s_store)) - O.water_act(src, volume, temperature, source, method) + O.water_act(volume, temperature, source, method)