diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index 812ee92b20c..64b3369d800 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -276,6 +276,13 @@ Alien plants should do something if theres a lot of poison qdel(src) return + +/obj/effect/alien/weeds/fire_act(null, temperature, volume) + if(temperature > T0C+200) + health -= 1 * temperature + healthcheck() + + /obj/effect/alien/weeds/attackby(var/obj/item/weapon/W, var/mob/user) if(W.attack_verb.len) visible_message("\red \The [src] have been [pick(W.attack_verb)] with \the [W][(user ? " by [user]." : ".")]")