Lowered chance of exhale spreading viruses, as it was firing way too often.

This commit is contained in:
Chinsky
2014-03-10 17:35:50 +04:00
parent d04b22e950
commit ec9b53bcad

View File

@@ -380,7 +380,7 @@
//spread some viruses while we are at it
if (virus2.len > 0)
if (get_infection_chance(src) && prob(20))
if (prob(10) && get_infection_chance(src))
// log_debug("[src] : Exhaling some viruses")
for(var/mob/living/carbon/M in view(1,src))
src.spread_disease_to(M)