-Advance diseases were given a good bug fixing based on reports and runtimes. Including the diseases spreading correctly.

=Proposals=

-Cyborgs can now beep and ping.
-Hulks will now talk in all upper-case and will spurt out random hulk phrases and flex.

=Sprites=

-Improved APC sprite by TankNut.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5031 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
giacomand@gmail.com
2012-11-09 21:12:59 +00:00
parent 4746f20f35
commit d71cc8f3d6
22 changed files with 166 additions and 41 deletions
+4 -4
View File
@@ -100,14 +100,14 @@ datum
var/datum/reagent/blood/self = src
src = null
for(var/datum/disease/D in self.data["viruses"])
var/datum/disease/virus = new D.type(D)
//var/datum/disease/virus = new D.type(0, D, 1)
// We don't spread.
if(virus.spread_type == SPECIAL || virus.spread_type == NON_CONTAGIOUS) continue
if(D.spread_type == SPECIAL || D.spread_type == NON_CONTAGIOUS) continue
if(method == TOUCH)
M.contract_disease(virus)
M.contract_disease(D)
else //injected
M.contract_disease(virus, 1, 0)
M.contract_disease(D, 1, 0)
/*