prevent queen bees from leaving their home (#29611)

This commit is contained in:
Toastical
2025-06-19 16:59:15 +00:00
committed by GitHub
parent 19ff013d46
commit 3580593de7
@@ -323,6 +323,11 @@
QDEL_NULL(queen)
return ..()
/mob/living/simple_animal/hostile/poison/bees/queen/consider_wakeup()
if(beehome && loc == beehome) // The queen is home and doesn't have to do anything.
return
return ..()
/mob/living/simple_animal/hostile/poison/bees/consider_wakeup()
if(beehome && loc == beehome) // If bees are chilling in their nest, they're not actively looking for targets
idle = min(100, ++idle)