mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Updated the PANDEMIC- recharge speed is now affect by the number of antibodies in the blood sample. Less types = faster recharge.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2316 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -343,7 +343,14 @@
|
||||
B.reagents.add_reagent("vaccine",15,vaccine_type)
|
||||
del(D)
|
||||
wait = 1
|
||||
spawn(1200)
|
||||
var/datum/reagents/R = beaker.reagents
|
||||
var/datum/reagent/blood/Blood = null
|
||||
for(var/datum/reagent/blood/L in R.reagent_list)
|
||||
if(L)
|
||||
Blood = L
|
||||
break
|
||||
var/list/res = Blood.data["resistances"]
|
||||
spawn(res.len*500)
|
||||
src.wait = null
|
||||
else
|
||||
src.temphtml = "The replicator is not ready yet."
|
||||
@@ -363,7 +370,7 @@
|
||||
B.reagents.add_reagent("blood",20,data)
|
||||
src.updateUsrDialog()
|
||||
wait = 1
|
||||
spawn(3000)
|
||||
spawn(2000)
|
||||
src.wait = null
|
||||
else
|
||||
src.temphtml = "The replicator is not ready yet."
|
||||
|
||||
Reference in New Issue
Block a user