Converts bees to basic mobs (#30662)

* Converts bees to basic mobs

* Undefs

* Linters
This commit is contained in:
PollardTheDragon
2025-10-28 20:53:18 +00:00
committed by GitHub
parent 5159e73c0d
commit ae4489cb2f
22 changed files with 561 additions and 434 deletions
+2 -2
View File
@@ -474,9 +474,9 @@
user.visible_message("<span class='danger'>[user] devours \the [affecting]!</span>")
if(affecting.mind)
add_attack_logs(attacker, affecting, "Devoured")
if(istype(affecting, /mob/living/simple_animal/hostile/poison/bees)) //Eating a bee will end up damaging you
if(istype(affecting, /mob/living/basic/bee)) //Eating a bee will end up damaging you
var/obj/item/organ/external/mouth = user.get_organ(BODY_ZONE_PRECISE_MOUTH)
var/mob/living/simple_animal/hostile/poison/bees/B = affecting
var/mob/living/basic/bee/B = affecting
mouth.receive_damage(1)
if(B.beegent)
B.beegent.reaction_mob(assailant, REAGENT_INGEST)