From 254092a7d54ca7f3cbb6079d7adb87a311c710d9 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 26 Mar 2023 10:27:03 +0200 Subject: [PATCH] [MIRROR] Add missing space to plant grafts [MDB IGNORE] (#19987) * Add missing space to plant grafts (#74098) It's now `"plant graft (Grass)"`, rather than `"plant graft(Grass)"`. * Add missing space to plant grafts --------- Co-authored-by: Jack Edge --- code/modules/hydroponics/seeds.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index 045134f2771..f4c92a1db52 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -545,7 +545,7 @@ /obj/item/seeds/proc/create_graft() var/obj/item/graft/snip = new(loc, graft_gene) snip.parent_name = plantname - snip.name += "([plantname])" + snip.name += " ([plantname])" // Copy over stats so the graft can outlive its parent. snip.lifespan = lifespan