We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 378ad29 commit e4d420dCopy full SHA for e4d420d
ReClass.NET/Nodes/BaseContainerNode.cs
@@ -243,8 +243,9 @@ public void AddBytes(int size)
243
244
public void InsertBytes(BaseNode position, int size)
245
{
246
+ int index = FindNodeIndex(position);
247
List<BaseNode> dummy = null;
- InsertBytes(FindNodeIndex(position), size, ref dummy);
248
+ InsertBytes(index >= 0 ? index : 0, size, ref dummy);
249
}
250
251
/// <summary>Inserts <paramref name="size"/> bytes at the specified position.</summary>
0 commit comments