diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm index 8f22ca4907b..e336a461e31 100644 --- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm @@ -108,6 +108,7 @@ sleep(5) //The duration of the TP animation canmove = original_canmove alpha = initial(alpha) + remove_modifiers_of_type(/datum/modifier/shadekin_phase_vision) //Potential phase-in vore if(can_be_drop_pred) //Toggleable in vore panel @@ -143,6 +144,7 @@ var/obj/effect/temp_visual/shadekin/phase_out/phaseanim = new /obj/effect/temp_visual/shadekin/phase_out(src.loc) phaseanim.dir = dir alpha = 0 + add_modifier(/datum/modifier/shadekin_phase_vision) sleep(5) invisibility = INVISIBILITY_LEVEL_TWO see_invisible = INVISIBILITY_LEVEL_TWO @@ -155,6 +157,10 @@ density = FALSE force_max_speed = TRUE +/datum/modifier/shadekin_phase_vision + name = "Shadekin Phase Vision" + vision_flags = SEE_THRU + ////////////////////////// /// REGENERATE OTHER /// //////////////////////////