From f4c38c6b8648efc5add3bb6657cd0b3bc62486ec Mon Sep 17 00:00:00 2001 From: phil235 Date: Sun, 31 Aug 2014 21:53:26 +0200 Subject: [PATCH] Fix low water light on hydrotray one single space... --- code/modules/hydroponics/hydroponics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 3b2fc03923e..510dcc3c677 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -257,7 +257,7 @@ obj/machinery/hydroponics/update_icon() overlays += image('icons/obj/hydroponics.dmi', icon_state = "[myseed.species]-grow[myseed.growthstages]") // Same if(waterlevel <= 10) - overlays += image('icons/obj/hydroponics.dmi', icon_state =" over_lowwater3") + overlays += image('icons/obj/hydroponics.dmi', icon_state = "over_lowwater3") if(nutrilevel <= 2) overlays += image('icons/obj/hydroponics.dmi', icon_state = "over_lownutri3") if(health <= (myseed.endurance / 2))