Skip to content

Commit 9952985

Browse files
authored
Multiple behavior replacers have the same signature, choosing the first one.
1 parent f0418fc commit 9952985

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)