From 4ae09135f81b73d47263ae97ff78122d1f8af2c8 Mon Sep 17 00:00:00 2001 From: William Anderson Date: Tue, 11 Jun 2024 00:00:23 -0700 Subject: [PATCH] Minor fixes to typos in Hydroponics (#25739) Fixing a couple of typographical errors - olive seeds were 'seads' and Gaseous Decomposition wasn't capitalized like all other traits were. --- code/modules/hydroponics/grown/olive.dm | 2 +- code/modules/hydroponics/plant_genes.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/grown/olive.dm b/code/modules/hydroponics/grown/olive.dm index 05f46a5a58f..7c25c4814fd 100644 --- a/code/modules/hydroponics/grown/olive.dm +++ b/code/modules/hydroponics/grown/olive.dm @@ -1,6 +1,6 @@ // Olives! /obj/item/seeds/olive - name = "pack of olive seads" + name = "pack of olive seeds" desc = "These seeds grow into olive trees." icon_state = "seed-olive" species = "olive" diff --git a/code/modules/hydroponics/plant_genes.dm b/code/modules/hydroponics/plant_genes.dm index 226d47129a9..f4f2dad971c 100644 --- a/code/modules/hydroponics/plant_genes.dm +++ b/code/modules/hydroponics/plant_genes.dm @@ -440,7 +440,7 @@ to_chat(target, "You are pricked by [G]!") /datum/plant_gene/trait/smoke - name = "gaseous decomposition" + name = "Gaseous Decomposition" dangerous = TRUE /datum/plant_gene/trait/smoke/on_squash(obj/item/food/snacks/grown/G, atom/target)