From ac5bde1a7ffaa545c29b05cbdad7b77dffcc65f3 Mon Sep 17 00:00:00 2001 From: ExcessiveUseOfCobblestone Date: Mon, 22 Aug 2016 17:06:59 -0400 Subject: [PATCH] Removes Partial Credits for Already Discovered Seeds + MoneyTree Potency Edit (#19975) * Nerfs Seeds & Money Trees * give them the D * REMOVE IT ALL * Update seeds.dm --- code/modules/cargo/exports/seeds.dm | 6 ++---- code/modules/hydroponics/grown/citrus.dm | 14 +++++++------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/code/modules/cargo/exports/seeds.dm b/code/modules/cargo/exports/seeds.dm index 2f8da4d3537..9f5847da464 100644 --- a/code/modules/cargo/exports/seeds.dm +++ b/code/modules/cargo/exports/seeds.dm @@ -32,7 +32,5 @@ return 0 var/potDiff = (S.potency - discoveredPlants[S.type]) - if(potDiff < 1) - return round(S.rarity * S.potency / 10) - else - return round(..() * potDiff) + + return round(..() * potDiff) diff --git a/code/modules/hydroponics/grown/citrus.dm b/code/modules/hydroponics/grown/citrus.dm index f9e55151249..4c9b5df32c0 100644 --- a/code/modules/hydroponics/grown/citrus.dm +++ b/code/modules/hydroponics/grown/citrus.dm @@ -105,19 +105,19 @@ /obj/item/weapon/reagent_containers/food/snacks/grown/shell/moneyfruit/add_juice() ..() switch(seed.potency) - if(0 to 10) + if(0 to 22) trash = /obj/item/stack/spacecash - if(11 to 20) + if(23 to 42) trash = /obj/item/stack/spacecash/c10 - if(21 to 30) + if(43 to 59) trash = /obj/item/stack/spacecash/c20 - if(31 to 40) + if(60 to 73) trash = /obj/item/stack/spacecash/c50 - if(41 to 50) + if(74 to 84) trash = /obj/item/stack/spacecash/c100 - if(51 to 60) + if(85 to 92) trash = /obj/item/stack/spacecash/c200 - if(61 to 80) + if(93 to 98) trash = /obj/item/stack/spacecash/c500 else trash = /obj/item/stack/spacecash/c1000 \ No newline at end of file