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()