From 3c912718e96e8e95445e6d74ef294875fefabef9 Mon Sep 17 00:00:00 2001 From: cib Date: Fri, 19 Oct 2012 13:50:49 +0200 Subject: [PATCH 1/3] Fixes retrovirus bug where it wasn't curable. --- code/datums/diseases/dna_spread.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/diseases/dna_spread.dm b/code/datums/diseases/dna_spread.dm index 3712ad2d25d..c7c5f812122 100644 --- a/code/datums/diseases/dna_spread.dm +++ b/code/datums/diseases/dna_spread.dm @@ -3,9 +3,9 @@ max_stages = 4 spread = "On contact" spread_type = CONTACT_GENERAL - cure = "Ryetalin" - cure = "ryetalyn" - curable = 0 + cure = "Ryetalyn" + cure_id = "ryetalyn" + curable = 1 agent = "S4E1 retrovirus" affected_species = list("Human") var/list/original_dna = list() From 59fcb2cd17d59d6fb8ed108898800b0637364743 Mon Sep 17 00:00:00 2001 From: cib Date: Fri, 19 Oct 2012 13:52:24 +0200 Subject: [PATCH 2/3] Removed HONK from the possible random diseases. --- code/game/gamemodes/events.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/events.dm b/code/game/gamemodes/events.dm index 2140101f723..39e9fddb756 100644 --- a/code/game/gamemodes/events.dm +++ b/code/game/gamemodes/events.dm @@ -215,7 +215,7 @@ // world << sound('sound/AI/outbreak7.ogg') var/virus_type if(!virus) - virus_type = pick(/datum/disease/dnaspread,/datum/disease/flu,/datum/disease/cold,/datum/disease/brainrot,/datum/disease/magnitis,/datum/disease/pierrot_throat) + virus_type = pick(/datum/disease/dnaspread,/datum/disease/flu,/datum/disease/cold,/datum/disease/brainrot,/datum/disease/magnitis) else switch(virus) if("fake gbs") From 180a6267ef1406cc3a9fe7bf9ca3cae9c7d214aa Mon Sep 17 00:00:00 2001 From: cib Date: Fri, 19 Oct 2012 13:57:34 +0200 Subject: [PATCH 3/3] Small bugfix for rp revolution. Lategame assigned head revolutionaries would still be regular revolutionaries. --- code/game/gamemodes/revolution/rp_revolution.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/gamemodes/revolution/rp_revolution.dm b/code/game/gamemodes/revolution/rp_revolution.dm index 11e9aebb262..d35c414c8a7 100644 --- a/code/game/gamemodes/revolution/rp_revolution.dm +++ b/code/game/gamemodes/revolution/rp_revolution.dm @@ -166,6 +166,7 @@ var/added_heads = 0 for(var/mob/living/carbon/human/H in world) if(H.client && H.mind && H.client.inactivity <= 10*60*20 && H.mind in revolutionaries) head_revolutionaries += H.mind + revolutionaries -= H.mind for(var/datum/mind/head_mind in heads) var/datum/objective/mutiny/rp/rev_obj = new rev_obj.owner = H.mind