From a707a54489cd35be8a3b949783af8547bbcf8ecf Mon Sep 17 00:00:00 2001 From: c0 Date: Mon, 14 Mar 2016 09:17:27 +0300 Subject: [PATCH] fixes broken sprites and broken clown banana --- code/modules/hydroponics/grown/root.dm | 1 + code/modules/hydroponics/grown/towercap.dm | 1 + code/modules/jobs/job_types/civilian.dm | 8 +++++--- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/code/modules/hydroponics/grown/root.dm b/code/modules/hydroponics/grown/root.dm index 0b5a8f53b7a..4459b62606e 100644 --- a/code/modules/hydroponics/grown/root.dm +++ b/code/modules/hydroponics/grown/root.dm @@ -89,6 +89,7 @@ endurance = 50 yield = 6 oneharvest = 1 + icon_dead = "whitebeet-dead" reagents_add = list("vitamin" = 0.05, "nutriment" = 0.05) /obj/item/weapon/reagent_containers/food/snacks/grown/redbeet diff --git a/code/modules/hydroponics/grown/towercap.dm b/code/modules/hydroponics/grown/towercap.dm index 873dda37163..61aabb318da 100644 --- a/code/modules/hydroponics/grown/towercap.dm +++ b/code/modules/hydroponics/grown/towercap.dm @@ -14,6 +14,7 @@ oneharvest = 1 growthstages = 3 icon_dead = "towercap-dead" + plant_type = PLANT_MUSHROOM mutatelist = list(/obj/item/seeds/tower/steel) /obj/item/seeds/tower/steel diff --git a/code/modules/jobs/job_types/civilian.dm b/code/modules/jobs/job_types/civilian.dm index 4acd3ecb4d8..486443278cc 100644 --- a/code/modules/jobs/job_types/civilian.dm +++ b/code/modules/jobs/job_types/civilian.dm @@ -26,7 +26,11 @@ Clown mask = /obj/item/clothing/mask/gas/clown_hat l_pocket = /obj/item/weapon/bikehorn r_pocket = /obj/item/toy/crayon/rainbow - backpack_contents = list(/obj/item/weapon/stamp/clown=1,/obj/item/weapon/reagent_containers/spray/waterflower=1) + backpack_contents = list( + /obj/item/weapon/stamp/clown = 1, + /obj/item/weapon/reagent_containers/spray/waterflower = 1, + /obj/item/weapon/reagent_containers/food/snacks/grown/banana = 1 + ) backpack = /obj/item/weapon/storage/backpack/clown satchel = /obj/item/weapon/storage/backpack/clown @@ -46,8 +50,6 @@ Clown if(visualsOnly) return - new /obj/item/weapon/reagent_containers/food/snacks/grown/banana(H.back, 50) - H.dna.add_mutation(CLOWNMUT) H.rename_self("clown")