From 41ce1ae13f0b160dc4776d88cec370de31c3cd03 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Fri, 24 Jan 2020 10:26:11 -0500 Subject: [PATCH] No More Vines That Shrink Thee Changelog Notes: - Blacklist Macro/micro/normal cillins from list of spawnable chems in vines that can get injected into your body. This is purely for pref reasons if you don't actually like having your size changed. --- code/modules/hydroponics/seed.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 874d3dcb105..0eb62a156c3 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -452,11 +452,15 @@ var/additional_chems = rand(0,5) if(additional_chems) - + //VOREStation Edit Start TFF 24/1/20 - More chems too the blacklist for prefs reasoning. var/list/banned_chems = list( "adminordrazine", - "nutriment" + "nutriment", + "macrocillin", + "microcillin", + "normalcillin" ) + //VOREStation Edit End for(var/x=1;x<=additional_chems;x++)