From 84494b2165fc39d311240e926ce9f263bbf6d0e9 Mon Sep 17 00:00:00 2001 From: JesusChristItsJasonBourne Date: Wed, 25 Sep 2019 20:19:35 +1000 Subject: [PATCH 1/3] vines blacklist update made vines not spawn with certain chems for various reasons, all of this was upon request. --- code/modules/hydroponics/seed.dm | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 047107420a..120829b4c0 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -430,9 +430,22 @@ if(additional_chems) - var/list/banned_chems = list( + var/list/banned_chems = list( //expanding this list on request - Skits "adminordrazine", - "nutriment" + "nutriment", + "spideregg", + "bloodburn", + "eden_snake", + "aphrodosiac", + "change_drug", + "change_drug_male", + "change_drug_female", + "change_drug_intersex", + "macrocillin", + "microcillin", + "normalcillin", + "fakesynxchem", + "clownsynxchem", ) for(var/x=1;x<=additional_chems;x++) @@ -565,7 +578,7 @@ banned_chems += new_chem chems[new_chem] = list(rand(1,10),rand(10,20)) source_turf.visible_message("\The [display_name] produce seems to be different!") - + if(7) if(get_trait(TRAIT_YIELD) != -1) set_trait(TRAIT_YIELD, get_trait(TRAIT_YIELD)+(rand(-2,2)*degree),10,0) From 355a186862e7243bf9e2dbf5b56e4a7f10cfff8c Mon Sep 17 00:00:00 2001 From: JesusChristItsJasonBourne Date: Wed, 25 Sep 2019 20:28:44 +1000 Subject: [PATCH 2/3] vine blacklist update blacklists certain chems from spawning with vines upon request --- code/modules/hydroponics/seed.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 120829b4c0..90e7ac6c04 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -436,7 +436,7 @@ "spideregg", "bloodburn", "eden_snake", - "aphrodosiac", + "aphrodisiac", "change_drug", "change_drug_male", "change_drug_female", From 96cc1cbcec1eff7f1af22ba37b32756dedd8d3f1 Mon Sep 17 00:00:00 2001 From: JesusChristItsJasonBourne Date: Thu, 26 Sep 2019 11:43:23 +1000 Subject: [PATCH 3/3] removed extra comma --- code/modules/hydroponics/seed.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 90e7ac6c04..b300208018 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -445,7 +445,7 @@ "microcillin", "normalcillin", "fakesynxchem", - "clownsynxchem", + "clownsynxchem" ) for(var/x=1;x<=additional_chems;x++)