Required spaceacillin levels no longer scale

The amount of spaceacillin required to stop infections is now a flat 5
units, instead of scaling with germ_level.
This commit is contained in:
mwerezak
2014-07-06 15:53:41 -04:00
committed by ZomgPonies
parent ffd2c1ce42
commit 044399e6f0
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -59,7 +59,7 @@
if (germ_level >= INFECTION_LEVEL_TWO)
var/datum/organ/external/parent = owner.get_organ(parent_organ)
//spread germs
if (antibiotics < get_cure_threshold() - 5 && parent.germ_level < germ_level && ( parent.germ_level < INFECTION_LEVEL_ONE*2 || prob(30) ))
if (antibiotics < get_cure_threshold() && parent.germ_level < germ_level && ( parent.germ_level < INFECTION_LEVEL_ONE*2 || prob(30) ))
parent.germ_level++
if (prob(3)) //about once every 30 seconds