From ba78a3f0e3e22002f85fb98ff2d93d20f7ca611b Mon Sep 17 00:00:00 2001 From: Shadowfire Date: Sun, 18 Aug 2019 20:23:03 +0200 Subject: [PATCH] Plant mutation buff Making bioluminescence twice as strong, now plants should be able to provide some light if they got some potency --- code/modules/hydroponics/trays/tray_update_icons.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/trays/tray_update_icons.dm b/code/modules/hydroponics/trays/tray_update_icons.dm index cf790269a2..90ad4a965f 100644 --- a/code/modules/hydroponics/trays/tray_update_icons.dm +++ b/code/modules/hydroponics/trays/tray_update_icons.dm @@ -84,7 +84,7 @@ var/clr if(seed.get_trait(TRAIT_BIOLUM_COLOUR)) clr = seed.get_trait(TRAIT_BIOLUM_COLOUR) - set_light(round(seed.get_trait(TRAIT_POTENCY)/10), l_color = clr) + set_light(round(seed.get_trait(TRAIT_POTENCY)/5), l_color = clr) return set_light(0)