Skip to content

Commit

Permalink
Fix beekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
Bierkraan committed May 12, 2024
1 parent 36db039 commit b16c9f3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions code/modules/1713/beekeeping.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
var/frames = 0
var/maxFrames = 5

/obj/structure/beehive/New()
..()
processing_objects += src

/obj/structure/beehive/Del()
processing_objects -= src
..()

/obj/structure/beehive/update_icon()
overlays.Cut()
icon_state = "beehive"
Expand Down Expand Up @@ -144,9 +152,7 @@
to_chat(user, SPAN_NOTICE("You take all filled honeycombs out."))
return

/obj/structure/beehive/Process() // All processes seem to be a lie
spawn(30)
visible_message(SPAN_NOTICE("DEBUG: Process is working."))
/obj/structure/beehive/process() // All processes seem to be a lie
if(closed && !smoked && bee_count)
pollinate_flowers()
update_icon()
Expand Down

0 comments on commit b16c9f3

Please sign in to comment.