Files
Aurora.3/code/modules/hydroponics/beekeeping/honey_frame.dm
T
9983fca311 Update SSOverlays (ported from Baystation) (#19051)
Our SSOverlays system is outdated, and is likely the cause of many of
the issues seen in #18895. It has also been linked to a massive server
performance decrease.

This brings an updated system from Baystation, hopefully with speed
increases.

Should be testmerged, ideally with #18895.

---------

Co-authored-by: Cody Brittain <cbrittain10@live.com>
2024-05-01 07:46:27 +00:00

17 lines
434 B
Plaintext

/obj/item/honey_frame
name = "beehive frame"
desc = "A frame for the beehive that can store honeycombs."
icon = 'icons/obj/beekeeping.dmi'
icon_state = "honeyframe"
w_class = ITEMSIZE_SMALL
var/honey = 0
/obj/item/honey_frame/filled
name = "filled beehive frame"
desc = "A frame for the beehive that has been filled with honeycombs."
honey = 20
/obj/item/honey_frame/filled/Initialize()
. = ..()
AddOverlays("honeycomb")