diff --git a/code/modules/hydroponics/beekeeping/beehive.dm b/code/modules/hydroponics/beekeeping/beehive.dm index 6c8ae1c420..fea4f452b2 100644 --- a/code/modules/hydroponics/beekeeping/beehive.dm +++ b/code/modules/hydroponics/beekeeping/beehive.dm @@ -115,7 +115,7 @@ if(!smoked && bee_count) user << "The bees won't let you take the honeycombs out like this, smoke them first." return - user.visible_message("[user] starts taking the honeycombs out of \the [src].", "You start taking the honeycombs out of \the [src]...") + user.visible_message("[user] starts taking the honeycombs out of \the [src].", "You start taking the honeycombs out of \the [src]...") while(honeycombs >= 100 && do_after(user, 30)) new /obj/item/honey_frame/filled(loc) honeycombs -= 100 @@ -192,8 +192,8 @@ /obj/item/honey_frame name = "beehive frame" desc = "A frame for the beehive that the bees will fill with honeycombs." - icon = 'icons/obj/apiary_bees_etc.dmi' - icon_state = "apiary" + icon = 'icons/obj/beekeeping.dmi' + icon_state = "honeyframe" w_class = 2 var/honey = 0 @@ -203,6 +203,10 @@ desc = "A frame for the beehive that the bees have filled with honeycombs." honey = 20 +/obj/item/honey_frame/filled/New() + ..() + overlays += "honeycomb" + /obj/item/beehive_assembly name = "beehive assembly" desc = "Contains everything you need to build a beehive. Cannot be disassembled once deployed." @@ -219,7 +223,8 @@ name = "wax" singular_name = "wax piece" desc = "Soft substance produced by bees. Used to make candles." - icon_state = "sheet-metal" + icon = 'icons/obj/beekeeping.dmi' + icon_state = "wax" /obj/item/stack/wax/New() ..() diff --git a/icons/obj/beekeeping.dmi b/icons/obj/beekeeping.dmi index 98174510b8..0b09bf4751 100644 Binary files a/icons/obj/beekeeping.dmi and b/icons/obj/beekeeping.dmi differ