From ba802a199a6a677d769f26c1130167b19ce4f87b Mon Sep 17 00:00:00 2001 From: S34N <12197162+S34NW@users.noreply.github.com> Date: Wed, 7 Sep 2022 13:38:18 +0100 Subject: [PATCH] Makes large jungle bushes use the tree transparency system (#18953) * large jungle bush transparency * size --- code/game/objects/structures/flora.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 130e909941b..ce733e99e42 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -433,6 +433,10 @@ pixel_y = -12 layer = ABOVE_ALL_MOB_LAYER +/obj/structure/flora/junglebush/large/Initialize(mapload) + . = ..() + AddComponent(/datum/component/largetransparency, 0, 0, 0, 0) + /obj/structure/flora/rock/pile/largejungle name = "rocks" icon_state = "rocks1"