diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 160a9d55288..6b275922345 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -272,6 +272,8 @@ * * target - The mob who is currently on fire */ /mob/living/carbon/proc/pat_out(mob/living/target) + if(target == src) + return // Probably shouldn't be able to pat yourself out. var/self_message = "You try to extinguish [target]!" if(prob(30) && ishuman(src)) // 30% chance of burning your hands var/mob/living/carbon/human/H = src