Add Koopa chess, fix Apocalypse and Dice variants
[vchess.git] / client / src / utils / array.js
index 4d44db0..d02552c 100644 (file)
@@ -4,7 +4,7 @@ export const ArrayFun = {
     const index = arr.findIndex(rfun);
     if (index >= 0) {
       arr.splice(index, 1);
-      if (all) {
+      if (!!all) {
         // Reverse loop because of the splice below
         for (let i = arr.length - 1; i >= index; i--) {
           if (rfun(arr[i])) arr.splice(i, 1);