mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Nerf proc of appendicitis and viral infection
If the station event system rolls for these, there is now a 50% chance that they'll just be skipped for the round.
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
/datum/event/spontaneous_appendicitis/start()
|
||||
if(prob(50))
|
||||
kill()
|
||||
return
|
||||
for(var/mob/living/carbon/human/H in shuffle(living_mob_list))
|
||||
if(H.client && H.appendicitis())
|
||||
break
|
||||
|
||||
@@ -4,6 +4,9 @@ var/global/list/event_viruses = list() // so that event viruses are kept around
|
||||
var/list/viruses = list()
|
||||
|
||||
/datum/event/viral_infection/setup()
|
||||
if(prob(50))
|
||||
kill()
|
||||
return
|
||||
announceWhen = rand(0, 3000)
|
||||
endWhen = announceWhen + 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user