mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 04:27:35 +01:00
Converts bees to basic mobs (#30662)
* Converts bees to basic mobs * Undefs * Linters
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user