To fix it, go into ParadoxNotion\NodeCanvas\Framework\_Commons\Design\PartialEditor\EditorUtils\EditorUtils_ReorderableList.cs and replace these lines(138):
1
2
3
4
vardropObj=list<em class="d4pbbc-italic"></em>;
list<em class="d4pbbc-italic"></em>=pickObj;
list[pickedIndex]=dropObj;
pickedListIndex<ol class="d4pbbc-ol"></ol>=-1;
by these:
1
2
list.RemoveAt(pickedIndex);
list.Insert(i,pickObj);
Login
Register
By registering on this website you agree to our Privacy Policy.