fix: Fixes BOD entries (#724)
This commit is contained in:
parent
671cc769a6
commit
d18d436cfe
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ namespace Server.Engines.BulkOrders
|
|||
_ => null
|
||||
};
|
||||
|
||||
for (var i = 0; bod?.Entries.Length >= i; ++i)
|
||||
for (var i = 0; i < bod?.Entries.Length; ++i)
|
||||
{
|
||||
bod.Entries[i].Owner = bod;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue