From 52df4f1355e4b63234be9b78bf1e5d323d04f0f0 Mon Sep 17 00:00:00 2001 From: Farie82 Date: Thu, 7 Jan 2021 12:13:30 +0100 Subject: [PATCH] Changes the reagents creation order in reagent_containers/New (#15255) Co-authored-by: joep van der velden <15887760+farie82@users.noreply.github.com> --- code/modules/reagents/reagent_containers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index 1102494a42d..81bc526b42d 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -29,10 +29,10 @@ amount_per_transfer_from_this = N /obj/item/reagent_containers/New() + create_reagents(volume, temperature_min, temperature_max) ..() if(!possible_transfer_amounts) verbs -= /obj/item/reagent_containers/verb/set_APTFT - create_reagents(volume, temperature_min, temperature_max) if(spawned_disease) var/datum/disease/F = new spawned_disease(0) var/list/data = list("viruses" = list(F), "blood_color" = "#A10808")