From 06f95c94d321cec76649ee5f68fda3db596fb0c5 Mon Sep 17 00:00:00 2001 From: xnqm8h <0b346ce4@crystalline.email> Date: Sat, 6 Aug 2022 21:45:32 -0400 Subject: [PATCH] Commenting out fallingapples. Commenting out fallingapples. --- code/modules/hydroponics/seed_datums_ch.dm | 12 ++++++------ code/modules/hydroponics/seedtypes/apples.dm | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/hydroponics/seed_datums_ch.dm b/code/modules/hydroponics/seed_datums_ch.dm index d16790cc50..9d12d808c6 100644 --- a/code/modules/hydroponics/seed_datums_ch.dm +++ b/code/modules/hydroponics/seed_datums_ch.dm @@ -60,12 +60,12 @@ set_trait(TRAIT_POTENCY,10) set_trait(TRAIT_YIELD,2) -//Adding self harvesting apples which contain poison and can mutate into poisonapples -/datum/seed/apple/falling - name = "fallingapple" - mutants = list("poisonapple") - can_self_harvest = 1 - chems = list("nutriment" = list(1,5),"applejuice" = list(5,10),"cyanide" = list(1,3)) +//Commenting out because self_harvesting can be troublesome. +// /datum/seed/apple/falling +// name = "fallingapple" +// mutants = list("poisonapple") +// can_self_harvest = 1 +// chems = list("nutriment" = list(1,5),"applejuice" = list(5,10),"cyanide" = list(1,3)) /datum/seed/wheat/meatwheat name = "meatwheat" diff --git a/code/modules/hydroponics/seedtypes/apples.dm b/code/modules/hydroponics/seedtypes/apples.dm index 7c266cd82c..4146ba7903 100644 --- a/code/modules/hydroponics/seedtypes/apples.dm +++ b/code/modules/hydroponics/seedtypes/apples.dm @@ -4,7 +4,7 @@ seed_name = "apple" display_name = "apple tree" kitchen_tag = "apple" - mutants = list("fallingapple","goldapple") //CHOMPEdit - Adding mutation strain for falling apples. + mutants = list("poisonapple", "goldapple") chems = list("nutriment" = list(1,10),"applejuice" = list(10,20)) /datum/seed/apple/New()