diff --git a/code/modules/mob/living/simple_animal/vore/solargrub.dm b/code/modules/mob/living/simple_animal/vore/solargrub.dm index 6fdd271acb..30acb0d66a 100644 --- a/code/modules/mob/living/simple_animal/vore/solargrub.dm +++ b/code/modules/mob/living/simple_animal/vore/solargrub.dm @@ -58,7 +58,7 @@ List of things solar grubs should be able to do: var/poison_per_bite = 5 //grubs cause a shock when they bite someone var/poison_type = "shockchem" - var/poison_chance = 100 + var/poison_chance = 50 var/datum/powernet/PN // Our powernet var/obj/structure/cable/attached // the attached cable @@ -104,11 +104,10 @@ List of things solar grubs should be able to do: if(isliving(.)) var/mob/living/L = . if(L.reagents) - L.reagents.add_reagent(poison_type, poison_per_bite) if(prob(poison_chance)) L << "You feel a shock rushing through your veins." L.reagents.add_reagent(poison_type, poison_per_bite) /mob/living/simple_animal/retaliate/solargrub/death() src.anchored = 0 - ..() \ No newline at end of file + ..()