Skip to content

Commit

Permalink
Fix: Core: WalkToCorpseGoal: While Hunter Feign Death should not caus…
Browse files Browse the repository at this point in the history
…e endless loop stuck!
Xian55 committed Jan 17, 2025
1 parent 8244ea8 commit 5712ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Goals/WalkToCorpseGoal.cs
Original file line number Diff line number Diff line change
@@ -132,7 +132,7 @@ private void RandomJump()

private bool AliveOrLoadingScreen()
{
return playerReader.CorpseMapPos == Vector3.Zero;
return bits.Dead() && playerReader.CorpseMapPos == Vector3.Zero;
}

private void Log(string text)

0 comments on commit 5712ea7

Please sign in to comment.