diff --git a/code/modules/mob/living/simple_animal/vore/rat.dm b/code/modules/mob/living/simple_animal/vore/rat.dm index 75d201699db..40b1800aa02 100644 --- a/code/modules/mob/living/simple_animal/vore/rat.dm +++ b/code/modules/mob/living/simple_animal/vore/rat.dm @@ -110,7 +110,9 @@ "almost sinks its teeth into [food], just stopping to give them another chance.")) hunger += 5 else if(hunger < 50) - visible_emote("appears to have had enough and prepares to strike!") + if(prob(25)) + visible_emote("appears to have had enough and prepares to strike!") + hunger += 5 else food.Weaken(5) food.visible_message("\the [src] pounces on \the [food]!!")