From 7026c0d93a46f81721dd6e281c1491c7bb3b86de Mon Sep 17 00:00:00 2001 From: Versallion Date: Mon, 7 Sep 2020 21:56:35 -0500 Subject: [PATCH 1/2] Hey did you know abductors spawned 20 minutes into the round? That wouldve been bad --- code/modules/events/abductor.dm | 1 + code/modules/events/nightmare.dm | 1 + 2 files changed, 2 insertions(+) diff --git a/code/modules/events/abductor.dm b/code/modules/events/abductor.dm index aee49abc..07d71f06 100644 --- a/code/modules/events/abductor.dm +++ b/code/modules/events/abductor.dm @@ -4,6 +4,7 @@ weight = 10 max_occurrences = 1 min_players = 20 + earliest_start = 45 MINUTES gamemode_blacklist = list("nuclear","wizard","revolution") /datum/round_event/ghost_role/abductor diff --git a/code/modules/events/nightmare.dm b/code/modules/events/nightmare.dm index 698f5130..d580267b 100644 --- a/code/modules/events/nightmare.dm +++ b/code/modules/events/nightmare.dm @@ -3,6 +3,7 @@ typepath = /datum/round_event/ghost_role/nightmare max_occurrences = 1 min_players = 20 + earliest_start = 30 MINUTES /datum/round_event/ghost_role/nightmare minimum_required = 1 From 30e50b0c6b8a2a90c7314a17252fd9c0b84701d3 Mon Sep 17 00:00:00 2001 From: Versallion Date: Mon, 7 Sep 2020 22:06:35 -0500 Subject: [PATCH 2/2] Synthtissue now takes sugar instead of nutriment megaepic win for all these doctors i hope that didnt fuck up something --- code/modules/reagents/chemistry/recipes/medicine.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm index 6981cd05..c45a7e44 100644 --- a/code/modules/reagents/chemistry/recipes/medicine.dm +++ b/code/modules/reagents/chemistry/recipes/medicine.dm @@ -73,7 +73,7 @@ id = "synthtissue" results = list("synthtissue" = 0.05) required_reagents = list("synthflesh" = 0.01) - required_catalysts = list("nutriment" = 0.1) + required_catalysts = list("sugar" = 0.1) //FermiChem vars: OptimalTempMin = 305 // Lower area of bell curve for determining heat based rate reactions OptimalTempMax = 315 // Upper end for above @@ -92,7 +92,7 @@ /datum/chemical_reaction/synthtissue/FermiCreate(datum/reagents/holder, added_volume, added_purity) var/datum/reagent/synthtissue/St = holder.has_reagent("synthtissue") - var/datum/reagent/N = holder.has_reagent("nutriment") + var/datum/reagent/N = holder.has_reagent("sugar") if(!St) return if(holder.chem_temp > 320)