Skip to content

Commit 2430e13

Browse files
Merge pull request #737 from otsffs/fix/animal-movement-behavior
Fix: Resolve animal sliding issue
2 parents e888eec + 9952985 commit 2430e13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Code/client/ModCompat/BehaviorVar.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,8 @@ const AnimationGraphDescriptor* BehaviorVar::Patch(BSAnimationGraphManager* apMa
417417
spdlog::critical(__FUNCTION__ ": multiple behavior replacers have the same signature, this must be corrected:");
418418
for (auto& item : matchedReplacers)
419419
spdlog::critical(" {}", behaviorPool[item].creatureName);
420-
FailList(hash);
421-
return nullptr;
420+
spdlog::warn("Multiple behavior replacers have the same signature, choosing the first one.");
421+
break;
422422
}
423423

424424
auto& foundRep = behaviorPool[matchedReplacers[0]];

0 commit comments

Comments
 (0)