From e1bbccc59f6d205df9b429eac4b432e75352fc61 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 23 Nov 2021 14:48:41 +0000 Subject: [PATCH] [MIRROR] Fix dragon rift not healing dragon [MDB IGNORE] (#9643) * Fix dragon rift not healing dragon (#62843) About The Pull Request Fixes #62816, caused by the healing aura refactor. Changelog cl fix: Fix the space dragon's rift not healing the dragon. /cl * Fix dragon rift not healing dragon Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> --- code/modules/mob/living/simple_animal/hostile/space_dragon.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm index b2a8ddcd703..ce98f35680f 100644 --- a/code/modules/mob/living/simple_animal/hostile/space_dragon.dm +++ b/code/modules/mob/living/simple_animal/hostile/space_dragon.dm @@ -100,6 +100,7 @@ AddElement(/datum/element/simple_flying) ADD_TRAIT(src, TRAIT_SPACEWALK, INNATE_TRAIT) ADD_TRAIT(src, TRAIT_NO_FLOATING_ANIM, INNATE_TRAIT) + ADD_TRAIT(src, TRAIT_HEALS_FROM_CARP_RIFTS, INNATE_TRAIT) rift = new rift.Grant(src)