From 7816417c32dcad733791b2e437bf5d4477850514 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Tue, 2 Nov 2021 06:31:15 -0400 Subject: [PATCH] tree fix and balance honey --- code/modules/mining/lavaland/ash_tree.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/mining/lavaland/ash_tree.dm b/code/modules/mining/lavaland/ash_tree.dm index 9e1267f0c0..7c7a677102 100644 --- a/code/modules/mining/lavaland/ash_tree.dm +++ b/code/modules/mining/lavaland/ash_tree.dm @@ -25,7 +25,7 @@ sap = TRUE icon_state = sap_icon_state desc = "A once large tree now burnt like the lands around it. This one seems to have a sap still inside." - sap_amount = rand(60,120) //good amout of honey + sap_amount = rand(20,60) //good amout of honey coal_amount = rand(5,15) //We give a random amout //So we dont lose are bowls, stolen form closet code @@ -33,6 +33,11 @@ dump_contents(override = FALSE) return ..() +/obj/structure/flora/ashtree/proc/dump_contents(override = TRUE) //Override is for not revealing the locker electronics when you open the locker, for example + var/atom/L = drop_location() + for(var/atom/movable/AM in src) + AM.forceMove(L) + /obj/structure/flora/ashtree/proc/harvest_sap() desc = "A once large tree now burnt like the lands around it." icon_state = "ashtree"