diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index c00348a2c6..4e5f929122 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -91,6 +91,11 @@ icon_state = "[icon_state][rand(1, 6)]" ..() +/obj/structure/flora/tree/jungle/small + pixel_y = 0 + pixel_x = -32 + icon = 'icons/obj/flora/jungletreesmall.dmi' + //grass /obj/structure/flora/grass name = "grass" @@ -381,5 +386,5 @@ pixel_y = -16 /obj/structure/flora/rock/pile/largejungle/Initialize() - ..() - icon_state = "[initial(icon_state)][rand(1,3)]" \ No newline at end of file + . = ..() + icon_state = "[initial(icon_state)][rand(1,3)]" diff --git a/icons/obj/flora/jungletreesmall.dmi b/icons/obj/flora/jungletreesmall.dmi new file mode 100644 index 0000000000..c56148b5dc Binary files /dev/null and b/icons/obj/flora/jungletreesmall.dmi differ