fix: Fixes BOD entries (#724)

This commit is contained in:
Kamron Batman 2021-08-24 10:06:44 -07:00 committed by GitHub
parent 671cc769a6
commit d18d436cfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}