Skip to content
Snippets Groups Projects
Commit 388eb93c authored by Vrelnir's avatar Vrelnir
Browse files

Merge branch 'possessedfix' into 'dev'

possessed fix

See merge request Vrelnir/degrees-of-lewdity!1554
parents a6fca3ea 4cd8fea9
No related branches found
No related tags found
No related merge requests found
......@@ -231,8 +231,8 @@ You clumsily walk over to the $container[$location].name.
<<set _container to $container[$location]>>
<<set _pregnancy to $sexStats.anus.pregnancy>>
<<set $checkboxResult to {}>><<set _paleCount to 0>>
<<for _i to 0; _i lt _container.count; _i++>>
<<if _container.creatures[_i].creature.includes("Pale")>>
<<for _i to 0; _i lt Object.keys(_container.creatures).length; _i++>>
<<if _container.creatures[_i] isnot null and _container.creatures[_i].creature.includes("Pale")>>
<<set _paleCount ++>>
<</if>>
<</for>>
......@@ -430,8 +430,8 @@ You find yourself sinking through the ice, submerging without causing a break.
<</if>>
<<else>>
<<if $phaseWraith lt 1 and $container and $container.home and $container.home.count gte 1 and !$wraithPaleVisit>>
<<for _i to 0; _i lt $container.home.count; _i++>>
<<if $container.home.creatures[_i].creature.includes("Pale")>>
<<for _i to 0; _i lt Object.keys($container.home.creatures).length; _i++>>
<<if $container.home.creatures[_i] isnot null and $container.home.creatures[_i].creature.includes("Pale")>>
<<set $wraithPaleVisit to "home">>
<</if>>
<</for>>
......@@ -620,8 +620,8 @@ You find yourself sinking through the ice, submerging without causing a break.
<<case "Lake Waterfall">>
<<pass 5>>
<<if $phaseWraith lt 1 and $container and $container.lake and $container.lake.count gte 1 and !$wraithPaleVisit>>
<<for _i to 0; _i lt $container.lake.count; _i++>>
<<if $container.lake.creatures[_i].creature.includes("Pale")>>
<<for _i to 0; _i lt Object.keys($container.lake.creatures).length; _i++>>
<<if $container.lake.creatures[_i] isnot null and $container.lake.creatures[_i].creature.includes("Pale")>>
<<set $wraithPaleVisit to "lake">>
<</if>>
<</for>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment