In ActionList.cs
line 551:
ActionEnd actionEnd = (endIndex < 0 || endIndex > action.endings.Count) ? Action.GenerateStopActionEnd () : action.endings[endIndex];
the upper bound check should be endIndex >= action.endings.Count
.
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
Thanks - a fix for this is set to be included in the upcoming v1.81.5 update.