Skip to content

Commit

Permalink
Update pre_made_viruses.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Lexanx committed Oct 4, 2024
1 parent 0a8091b commit 6b159a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/virusology/code/pre_made_viruses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
/mob/living/simple_animal/hostile/giant_spider/apply_melee_effects(mob/living/carbon/human/M)
. = ..()
if(Adjacent(M))//if it's human who can be infected standing nearby
if (prob(10))
if (prob(3))
infect_virus2(M, spider, 1)


Expand All @@ -83,7 +83,7 @@
/mob/living/simple_animal/hostile/meatstation/apply_melee_effects(mob/living/carbon/human/M)
. = ..()
if(Adjacent(M))//if it's human who can be infected standing nearby
if (prob(25))
if (prob(10))
infect_virus2(M, livingmeat, 1)

/datum/disease2/disease/livingmeat/New()
Expand Down

0 comments on commit 6b159a5

Please sign in to comment.