Fixed an error where incorrectly targeted effects would cause computation error

This commit is contained in:
Thaum Rystra
2020-05-15 17:27:34 +02:00
parent 3af48649f7
commit 2c988b8717
3 changed files with 9 additions and 4 deletions

View File

@@ -84,7 +84,10 @@ function bulkWriteProperties(bulkWriteOps){
bulkWriteOps,
{ordered : false},
function(e){
if (e) console.error(e);
if (e) {
console.error('Bulk write failed: ');
console.error(e);
}
}
);
} else {