Skip to content

Commit

Permalink
correct else placement in calebSwimChase.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Sep 29, 2023
1 parent e072380 commit 31541fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/games/blood/src/aicaleb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,9 @@ static void calebThinkSwimChase(DBloodActor* actor)
else
aiNewState(actor, &tinycaleb13967C);
}
else
aiNewState(actor, &tinycaleb13967C);
}
else
aiNewState(actor, &tinycaleb13967C);
return;
}
aiNewState(actor, &tinycalebSwimGoto);
Expand Down

0 comments on commit 31541fd

Please sign in to comment.