From bd863d0d898882cff40699c81cc922883d962613 Mon Sep 17 00:00:00 2001 From: DZD Date: Sat, 21 Mar 2015 15:23:28 -0400 Subject: [PATCH] Applepocalypse Prevention - Nutriment is no longer insanely good for increasing a hydroponics tray's yield_mod, it's now marginally worse than robust harvest, which is marginally more difficult to make. - yield_mod is now capped at 100, no more getting 2000+ items out of one harvest. --- code/game/machinery/hydroponics.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/hydroponics.dm b/code/game/machinery/hydroponics.dm index ef9a7d29150..077072f938a 100644 --- a/code/game/machinery/hydroponics.dm +++ b/code/game/machinery/hydroponics.dm @@ -109,7 +109,7 @@ "cryoxadone" = list( 3, 0, 0 ), "ammonia" = list( 0.5, 0, 0 ), "diethylamine" = list( 1, 0, 0 ), - "nutriment" = list( 0.5, 1, 0 ), + "nutriment" = list( 0.25, 0.15, 0 ), "radium" = list( -1.5, 0, 0.2 ), "adminordrazine" = list( 1, 1, 1 ), "robustharvest" = list( 0, 0.2, 0 ), @@ -141,7 +141,7 @@ update_icon() if(closed_system) flags &= ~OPENCONTAINER - + /obj/machinery/portable_atmospherics/hydroponics/upgraded/New() ..() component_parts = list() @@ -368,7 +368,7 @@ // Beneficial reagents have a few impacts along with health buffs. if(beneficial_reagents[R.id]) health += beneficial_reagents[R.id][1] * reagent_total - yield_mod += beneficial_reagents[R.id][2] * reagent_total + yield_mod = min(100, yield_mod + (beneficial_reagents[R.id][2] * reagent_total)) mutation_mod += beneficial_reagents[R.id][3] * reagent_total // Mutagen is distinct from the previous types and mostly has a chance of proccing a mutation.