diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm
index 5291ce7635..abc8352297 100644
--- a/code/modules/mob/living/carbon/carbon.dm
+++ b/code/modules/mob/living/carbon/carbon.dm
@@ -225,14 +225,14 @@
"You try to pat out [src]'s flames! Hot!")
if(do_mob(M, src, 15))
if (prob(10) && (M.fire_stacks <= 0))
- M.fire_stacks -= 0.5
+ src.fire_stacks -= 0.5
M.fire_stacks += 1
M.IgniteMob()
if (M.on_fire)
M.visible_message("The fire spreads from [src] to [M]!",
"The fire spreads to you as well!")
else
- src.fire_stacks -= 1 //Less effective than stop, drop, and roll
+ src.fire_stacks -= 0.5 //Less effective than stop, drop, and roll - also accounting for the fact that it takes half as long.
if (src.fire_stacks <= 0)
M.visible_message("[M] successfully pats out [src]'s flames.",
"You successfully pat out [src]'s flames.")