Nightmare Jaunt Change

Prevents Nightmares from being pulled OUT of jaunt from vendors and engraved messages.
This commit is contained in:
keronshb
2021-05-03 00:05:39 -04:00
parent 31a71bc9ee
commit 834ec62c0b
3 changed files with 4 additions and 4 deletions
@@ -56,9 +56,9 @@
/obj/effect/dummy/phased_mob/shadow/proc/check_light_level()
var/turf/T = get_turf(src)
var/light_amount = T.get_lumcount()
if(light_amount > 0.2) // jaunt ends
if(light_amount > 0.4) // jaunt ends
end_jaunt(TRUE)
else if (light_amount < 0.2 && (!QDELETED(jaunter))) //heal in the dark
else if (light_amount < 0.4 && (!QDELETED(jaunter))) //heal in the dark
jaunter.heal_overall_damage(1,1)
/obj/effect/dummy/phased_mob/shadow/proc/end_jaunt(forced = FALSE)